一、选择模版Single View Applicationspa
二、将Main.storyboard 和LaunchScreen.xib删除get
三、在Info.plist中,把Launch screen interface file base name 以及Main storyboard file base name删除it
四、点击在target里的Use Asset Catalog,对话框里直接点击Migrateio
五、在AppDelegate的第一个方法里面添加代码:class
OC:file
(1)、建立window方法
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];模版
(2)、设置window背景tab
self.window.backgroundColor = [UIColor whiteColor];storyboard
(3)、使window可见
[self.window makeKeyAndVisible];
Swift
self.window = UIWindow(frame:UIScreen.mainScreen().bounds);
self.window!.backgroundColor = UIColor.whiteColor();
self.window!.makeKeyAndVisible();