二、再到appDelegate的didFinishLaunchingWithOptions中加入rootViewController
例如
let navigationVC: UINavigationController = UINavigationController(rootViewController: yourViewController)
let frame = UIScreen.mainScreen().bounds
window = UIWindow(frame: frame)
window!.rootViewController = navigationVC
window!.makeKeyAndVisible()