iOS Show Full Screen


/ Published in: Objective C
Save to your folder(s)



Copy this code and paste it in your HTML
  1. if(popoverController != nil)
  2. [popoverController dismissPopoverAnimated:NO];
  3.  
  4. UINavigationController *nc;
  5. nc = [[UINavigationController alloc] initWithRootViewController:onlineViewCtrl];
  6. nc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
  7. nc.navigationBar.barStyle = UIBarStyleBlack;
  8. [self presentModalViewController:nc animated:YES];

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.