// // <%= @app_name %>AppDelegate.m // <%= @app_name %> // // Copyright (c) <%= Date.today.year %> Future Workshops. All rights reserved. // #import "<%= @prefix %>AppDelegate.h" @implementation <%= @prefix %>AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.window.backgroundColor = [UIColor whiteColor]; [self.window makeKeyAndVisible]; return YES; } @end