删除StoryBorad
2018-08-02 本文已影响0人
淡然z
1.删除Main.storyboard和LaunchScreen
2.设置Main Interface和Launch Screen File为空
3.AppDelegate 的didFinishLaunchingWithOptions中设置
window=UIWindow(frame:UIScreen.main.bounds)
window?.backgroundColor=UIColor.white
window?.rootViewController = 自定义需要展示的视图控制器
window?.makeKeyAndVisible()
return true