Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     // Create Game View Controller
  2.     UIViewController *gameViewController = [[GameViewController alloc]init];
  3.    
  4.     // Create Main Navigation Controller
  5.     UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController: gameViewController];
  6.     [navigationController setNavigationBarHidden:YES];
  7.  
  8.     // Set Navigation Controller as root.
  9.     self.window.rootViewController = navigationController;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement