Files
yoga/YogaKit/YogaKitSample/YogaKitSample/AppDelegate.m

28 lines
694 B
Mathematica
Raw Normal View History

2016-12-07 17:27:25 +00:00
/**
2016-12-07 17:41:50 +00:00
* Copyright 2014-present, Facebook, Inc.
2016-12-07 17:27:25 +00:00
* All rights reserved.
*
2016-12-07 17:41:50 +00:00
* This source code is licensed under the license found in the
* LICENSE-examples file in the root directory of this source tree.
2016-12-07 17:27:25 +00:00
*/
#import "AppDelegate.h"
#import "ViewController.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = [ViewController new];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}
@end