mirror of
https://github.com/thestk/stk
synced 2026-01-18 15:11:53 +00:00
move iOS demo project to iOS folder
This commit is contained in:
25
iOS/Demo/iOS Demo/AppDelegate.m
Normal file
25
iOS/Demo/iOS Demo/AppDelegate.m
Normal file
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user