1.在Xcode6.0以下版本找到空模板(路径与下方相同).
2.将空模板拖入路径:Macintosh HD ▸ 应用程序 ▸ Xcode(版本号).app ▸ Contents ▸ Developer ▸ Platforms ▸ iPhoneOS.platform ▸ Developer ▸ Library ▸ Xcode ▸ Templates ▸ Project Templates ▸ Application ▸ Empty Application.xctemplate
3.在appdelegate中,添加代码(创建根window和根控制器)
// 1.创建窗口
self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
// 2.创建根控制器
RootViewController *root = [[RootViewController alloc]init];
self.window.rootViewController = root;
// 3.显示窗口视图
self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
// 2.创建根控制器
RootViewController *root = [[RootViewController alloc]init];
self.window.rootViewController = root;
// 3.显示窗口视图
[self.window makeKeyAndVisible];
因为Xcode5.1.1或低于该版本的部分Xcode都有空模板,拷贝其中的空模板,粘贴到Xcode6或所需要Xcode上方路径中