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


You need to login to view comments.