I am having trouble animating scale of a view to zero. Here's my code:
[UIView animateWithDuration:0.3 animations:^{
myView.transform = CGAffineTransformMakeScale(0.0, 0.0);
} completion:^(BOOL finished){
}];
For some reason, the view stretches and squeezes horizontally like old TV tube switching off. If I make the scale to (0.1, 0.1) instead, it scales properly, but of course, not til zero.
Why is this happening?