1
我想使用swift 3在我的應用程序中使用故事板創建視圖控制器。我嘗試使用「啓動圖像」實現與使用「啓動圖像」加載飛濺時啓動屏幕所做的相同的效果。由於我在啓動畫面中獲得了動畫,因此我希望使用視圖控制器作爲Swift 3中的啓動畫面。如何實現此目的?如何在swift 3中將視圖控制器設置爲啓動畫面?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
self.window = UIWindow(frame: UIScreen.main.bounds)
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let initialViewController = storyboard.instantiateViewController(withIdentifier: "splashScreen")
self.window?.rootViewController = initialViewController
self.window?.makeKeyAndVisible()
return true
}
是的,我希望有在swift3 viewDidLoad中的功能,推動該主視圖控制器。請用那個編輯答案。我一定會支持它。 –
希望它能爲你工作。 – Himanshu
讓我檢查並儘快回覆。 –