美文网首页
不使用Main.storyBoard搭Swift项目框架

不使用Main.storyBoard搭Swift项目框架

作者: 深圳阳光 | 来源:发表于2020-06-09 11:02 被阅读0次

    1.移除Main Interface,如下图:

    移除.png

    2.修改Info.plist文件,将下面的代码注释掉.如下图:

    注释.png

    3.给AppDelegate添加rootViewController

        var window: UIWindow?
    
        func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
            // Override point for customization after application launch.
            
            self.window = UIWindow.init(frame: UIScreen.main.bounds)
            self.window?.backgroundColor = UIColor.white
            self.window?.makeKeyAndVisible()
            let tabBarVC = MyTabBarController()
            self.window?.rootViewController = tabBarVC
            
            return true
        }
    

    相关文章

      网友评论

          本文标题:不使用Main.storyBoard搭Swift项目框架

          本文链接:https://www.haomeiwen.com/subject/shhstktx.html