Add minimum viable product
This commit is contained in:
commit
5a5dfb7bb2
41 changed files with 405 additions and 0 deletions
16
SPAppDelegate.m
Normal file
16
SPAppDelegate.m
Normal file
|
@ -0,0 +1,16 @@
|
|||
#import "SPAppDelegate.h"
|
||||
#import "SPRootViewController.h"
|
||||
@import UIKit;
|
||||
@import QuartzCore;
|
||||
|
||||
@implementation SPAppDelegate
|
||||
|
||||
- (void)applicationDidFinishLaunching:(UIApplication *)application {
|
||||
_window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
||||
_rootViewController = [[UINavigationController alloc]
|
||||
initWithRootViewController:[[SPRootViewController alloc] init]];
|
||||
_window.rootViewController = _rootViewController;
|
||||
[_window makeKeyAndVisible];
|
||||
}
|
||||
|
||||
@end
|
Loading…
Add table
Add a link
Reference in a new issue