1.delete Main.storyboard
2.change .xcodeproj 中 General->Deployment Info ->Main Interface 为空
3.in appdelegate.swift
<code>
window = UIWindow(frame:UIScreen.mainScreen().bounds)
let nav = UINavigationController(rootViewController:ViewController())
window?.rootViewController = nav
window?.makeKeyAndVisible()</code>
网友评论