Advertisement
Guest User

Untitled

a guest
May 26th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     Channels *channels = [[Channels alloc] initWithNibName:@"Channels" bundle:nil];
  2.    
  3.     [UIView beginAnimations:nil context:nil];
  4.     [UIView setAnimationDuration:0.5];
  5.     [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:[channels view] cache:YES];
  6.     [[self view] addSubview:[channels view]];
  7.     [UIView commitAnimations];
  8.    
  9.     [channels release];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement