Skip to content

Commit

Permalink
Set the root of the demo project to the test view controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
mamaral committed Jul 7, 2015
1 parent 5540cbb commit 9867f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Demo/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ @implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[ProfileViewController new]];
self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[TestViewController new]];
[application setStatusBarStyle:UIStatusBarStyleLightContent];
[self.window makeKeyAndVisible];
return YES;
Expand Down

0 comments on commit 9867f40

Please sign in to comment.