Guest User

Untitled

a guest
Feb 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. - (void)flipAction:(id)sender
  2. {
  3. static BOOL toggle;
  4. [UIView beginAnimations:nil context:NULL];
  5. [UIView setAnimationDuration:kTransitionDuration];
  6. [mainView setAlpha:(toggle ? 1.0 : 0.0)];
  7. toggle = !toggle;
  8. [UIView commitAnimations];
  9. return;
  10. }
Add Comment
Please, Sign In to add comment