Advertisement
Guest User

Untitled

a guest
Jul 15th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     CGRect rect2=tableViewPlayList.frame;
  2.     rect2.origin.y=-self.view.frame.size.height;
  3.    
  4.     [UIView animateWithDuration:1 animations:^{
  5.         [tableViewPlayList setFrame:rect2];
  6.     } completion:^(BOOL finished) {
  7.         [self.navigationController popToRootViewControllerAnimated:YES];
  8.     }];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement