Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

Try:

[UIView animateWithDuration:0.3 animations:^{
    myView.frame = CGRectMake(myView.origin.x, myView.origin.y, 0.0, 0.0);
} completion:^(BOOL finished){
}];
share|improve this answer
Or centre.x,centre.y to vanish to the centre point – jrturton Oct 29 '11 at 7:00
Thanks, but I really wanna use transform if possible. The view content hierarchy is quite complex and I'll have to go through the autoresizing mask property of each subviews for it to resize properly. – pixelfreak Oct 29 '11 at 7:18

please use:

myView.layer.transform = CGAffineTransformMakeScale(0.0, 0.0);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.