Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. -(IBAction)home:(id)sender{
  2.  
  3. DetailYV * myNewVC = [self.storyboard instantiateViewControllerWithIdentifier :@"myNewViewController"];
  4. if (![self.presentedViewController isBeingDismissed]){ //проверить не открыты ли другие VC, если открыты - закрыть их
  5. [[self presentingViewController] dismissViewControllerAnimated:YES completion:NULL];
  6. }
  7. [self presentViewController:myNewVC animated:YES completion:nil ];
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement