Guest User

Untitled

a guest
Nov 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. if (hidden == YES) {
  2. self.textLabel.hidden = NO;
  3. self.image.alpha = 1.0;
  4. self.image.center = CGPointMake(160, 296);
  5. hidden = NO;
  6. }
  7. else {
  8. self.textLabel.hidden = YES;
  9. [UIView animateWithDuration:1.0
  10. animations:^{
  11. self.image.center = CGPointMake(320, 0);
  12. self.image.alpha = 0.0;
  13. }
  14. completion:^(BOOL finished){
  15. }];
  16.  
  17.  
  18. hidden = YES;
  19. }
Add Comment
Please, Sign In to add comment