gpt4 book ai didi

ios - 在 Swift 中从 AppDelegate 加载嵌入到 UINavigationController 的 Controller

转载 作者:可可西里 更新时间:2023-11-01 00:53:28 27 4
gpt4 key购买 nike

我需要从 AppDelegate 显示一个嵌入到 UINavigationController 的 TableView 。

我一般用

    let viewController: UIViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("prova") as ViewController
window?.rootViewController?.presentViewController(viewController, animated: false, completion: nil)

但它不适用于嵌入 Controller ,需要如何调整此代码?

Here is a test project.

最佳答案

您需要使用 Storyboard中的标识符实例化 UINavigationController。导航 Controller 应该连接到 Storyboard 中的 rootViewController 并将自动显示它。

let navController: UINavigationController = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("provaNavController") as UINavigationController
window?.rootViewController?.presentViewController(navController, animated: false, completion: nil)

更新

由于您没有在 Storyboard 中设置初始 View Controller ,因此请使用以下代码:

window = UIWindow(frame: UIScreen.mainScreen().bounds)
let navController: UINavigationController = UIStoryboard(name: "Main", bundle:nil).instantiateViewControllerWithIdentifier("provaNavController") as UINavigationController
window?.rootViewController = navController
window?.makeKeyAndVisible()

您还需要从常规项目设置中清除 Main.storyboard: enter image description here

关于ios - 在 Swift 中从 AppDelegate 加载嵌入到 UINavigationController 的 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28181698/

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