如何将底部的视图控制器设置为我的初始视图控制器?
我查了一下这个方框,说''是初始视图控制器'但它不起作用。相反,它给了我一个错误说:无法实例化UIMainStoryboardFile的默认视图控制器' Main' - 也许没有设定指定的入口点?
我该如何解决这个问题?
答案 0 :(得分:0)
有时会发生在Xcode中。我已经完成了以下问题来解决问题:
将此代码添加到AppDelegate didFinishLaunchWithOptions
。将视图控制器故事板标识符设置为" MyViewController"或者你想要的任何东西。
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
appDelegate.window = UIWindow(frame: UIScreen.mainScreen().bounds)
let mainStoryboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let yourVC = mainStoryboard.instantiateViewControllerWithIdentifier("MyViewController") as! MyViewController
appDelegate.window?.rootViewController = yourVC
appDelegate.window?.makeKeyAndVisible()