/ Published in: Objective C
Expand |
Embed | Plain Text
[UIView animateWithDuration:0.2 animations:^{ view.alpha = 0.0; } completion:^(BOOL finished){ [view removeFromSuperview]; }];
You need to login to post a comment.
BenClayton on 04/04/11
2 people have marked this snippet as a favorite
[UIView animateWithDuration:0.2 animations:^{ view.alpha = 0.0; } completion:^(BOOL finished){ [view removeFromSuperview]; }];
You need to login to post a comment.