Advertisement
Guest User

Untitled

a guest
May 5th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. MyImage.alpha = 1.0f;
  2. [UIView animateWithDuration:0.1f //speed of flash
  3. delay:0.0f
  4. options:UIViewAnimationOptionAutoreverse
  5. animations:^ {
  6. [UIView setAnimationRepeatCount:4.0f/2.0f]; //flash few times
  7. MyImage.alpha = 0.0f;
  8. } completion:^(BOOL finished) {
  9. [MyImage removeFromSuperview];
  10. }];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement