Guest User

Untitled

a guest
Jul 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @implementation LapTimerAppDelegate
  2. @synthesize window, myViewController;
  3.  
  4. - (void)applicationDidFinishLaunching:(UIApplication *)application {
  5.  
  6. window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
  7.  
  8. // ... creation of view controllers for the window ...
  9.  
  10. [window addSubview: [self.myViewController view]];
  11. [window makeKeyAndVisible];
  12.  
  13. }
  14.  
  15. // ... other App Delegate code ...
  16.  
  17. @end
Add Comment
Please, Sign In to add comment