12345678910111213141516171819202122232425 |
- //
- // MASAppDelegate.m
- // Masonry
- //
- // Created by Jonas Budelmann on 20/07/13.
- // Copyright (c) 2013 cloudling. All rights reserved.
- //
- #import "MASAppDelegate.h"
- #import "MASExampleListViewController.h"
- @implementation MASAppDelegate
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];
- // Override point for customization after application launch.
- self.window.backgroundColor = UIColor.whiteColor;
-
- UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:MASExampleListViewController.new];
- self.window.rootViewController = navigationController;
- [self.window makeKeyAndVisible];
- return YES;
- }
- @end
|