Files
stk/iOS/demo/iOS Demo/AppDelegate.m
2014-03-30 23:43:32 +01:00

26 lines
560 B
Objective-C

//
// AppDelegate.m
// iOS Demo
//
// Created by Ariel Elkin on 03/03/2014.
//
#import "AppDelegate.h"
#import "ViewController.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
ViewController *vc = [[ViewController alloc] initWithNibName:nil bundle:nil];
[self.window setRootViewController:vc];
[self.window makeKeyAndVisible];
return YES;
}
@end