新建工程默認啓動頁面是故事版app
因此第一個改動的地方是這裏code
改成空而後單機回車。blog
第二步。改的是主要配置文件AppDelegateit
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去故事版沒有去MyTabBarControllerio
由於還須要刪除一項配置class
這項配置的做用是分屏設置的。沒有用。刪除了之後就能夠 正常使用MyTabBarController了import