Xcode 6 创建Empty Application

1、创建一个 Single View Application;

2、删除工程目录下的 Main.storyboard 和 LaunchScreen.xib;

3、打开 Supporting Files 下的 Info.plist,删除 Launch screen interface file base name 和 Main storyboard file base name 两项;

4、点击工程 -> 点击Target下面的第一项 -> 选择General选项卡 -> 点击 Use Asset Catalog 按钮,弹出的对话框点击 Migrate;

5、在 AppDelegate 的 application: didFinishLaunchingWithOptions: 方法的return语句前,添加以下三句:

// Objective C
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。