gpt4 book ai didi

ios - 如何将我的项目从使用 Storyboard 转变为不再使用 Storyboard?

转载 作者:行者123 更新时间:2023-11-29 05:57:07 27 4
gpt4 key购买 nike

如果我有一个已经使用 Storyboard 的 Xcode 项目,现在我想切换到以编程方式加载 View Controller ,我该怎么做?

最佳答案

这是一个in-depth article关于这样做。 TLDR 是:

  1. 在项目设置中,清除主界面:

enter image description here

  1. 在您的 didFinishLaunching 中使用如下代码:

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    window = UIWindow(frame: UIScreen.main.bounds)
    let homeViewController = UIViewController()
    homeViewController.view.backgroundColor = UIColor.red
    window!.rootViewController = homeViewController
    window!.makeKeyAndVisible()
    return true
    }

关于ios - 如何将我的项目从使用 Storyboard 转变为不再使用 Storyboard?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55052060/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com