xcode12 swift5 根视图 黑屏 新建rootViewController黑屏 代码设置主页

新建工程默认启动页面是故事版

所以第一个改动的地方是这里

 

xcode12 swift5 根视图 黑屏 新建rootViewController黑屏 代码设置主页_第1张图片改为空然后单机回车。

第二步。改的是主要配置文件AppDelegate



import UIKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?


    internal func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        window = UIWindow(frame: UIScreen.main.bounds)
        window?.rootViewController = MyTabBarController()
        window?.makeKeyAndVisible()
        return true
    }

    


}

 

改完之后你会惊讶的发现。还是tmd去故事版没有去MyTabBarController

因为还需要删除一项配置

xcode12 swift5 根视图 黑屏 新建rootViewController黑屏 代码设置主页_第2张图片

这项配置的作用是分屏设置的。没有用。删除了以后就可以 正常使用MyTabBarController了

你可能感兴趣的:(#,swift,#,ios,bug)