美文网首页
Swift 不使用 main storyBoard

Swift 不使用 main storyBoard

作者: 码哥进化 | 来源:发表于2017-05-18 22:37 被阅读187次

1、删除info.plist中Mainstoryboard file base name键值来让程序不从stroyBoard来启动

2、打开AppDelegate.swift文件,在didFinishLaunchingWithOptions中添加如下代码:

self.window = UIWindow(frame: UIScreen.main.bounds)

self.window!.makeKeyAndVisible()

let loginVC = LoginViewController()

self.window?.rootViewController = loginVC

相关文章

网友评论

      本文标题:Swift 不使用 main storyBoard

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