Skip to content

Latest commit

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Xcode 6 has removed the Empty Application template, this can help you to create Empty Application template in Xcode 6.

Copy Empty Application.xctemplate folder to ~/Library/Developer/Xcode/Templates/

Now you can create empty template in Xcode 6.

Then open AppDelegate.m and edit applicationDidFinishLaunchingWithOptions

Swift:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
self.window?.backgroundColor = UIColor.whiteColor()
self.window?.makeKeyAndVisible()
return true
}

Objective-C:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}

About

Empty template without Storyboard for Xcode 6.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors