Advertisement
davideasyclick

AppDelegate.m

Jan 27th, 2017
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. AppDelegate.m
  2.  
  3.  
  4. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  5.     UIViewController *initViewController=[[ViewController alloc] init];
  6.     if (initViewController) {
  7.         self.window = [UIWindow new];
  8.         [self.window makeKeyAndVisible];
  9.         self.window.rootViewController = initViewController;
  10.         self.window.frame = [[UIScreen mainScreen] bounds];
  11.        
  12.         return YES;
  13.     }
  14.     return NO;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement