Sha256: db57e51bdf2dfd6a18afcb72677b1c6a41b63401e6fc1f0858a8d227995d0c88
Contents?: true
Size: 833 Bytes
Versions: 8
Compression:
Stored size: 833 Bytes
Contents
// // XXPROJECT_TITLEXX // // Copyright (c) XXYEARXX XXORGANIZATION_NAMEXX. All rights reserved. // #import "XXCLASS_PREFIXXXAppDelegate.h" #import "XXCLASS_PREFIXXXRootViewController.h" @interface XXCLASS_PREFIXXXAppDelegate () @property (nonatomic, strong) XXCLASS_PREFIXXXRootViewController *rootViewController; @end @implementation XXCLASS_PREFIXXXAppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.rootViewController = [[XXCLASS_PREFIXXXRootViewController alloc] init]; self.window.rootViewController = self.rootViewController; self.window.backgroundColor = [UIColor whiteColor]; [self.window makeKeyAndVisible]; return YES; } @end
Version data entries
8 entries across 8 versions & 1 rubygems