gpt4 book ai didi

ios - 从 AppDelegate 遍历到其他 Controller

转载 作者:行者123 更新时间:2023-11-28 08:58:00 24 4
gpt4 key购买 nike

我正在使用的层次结构如下 ---UIViewController->(present)->UINavigationController->(push)->UITableViewController。如何从我的 AppDelegate 访问“UITableViewController”?

最佳答案

AppDelegate 文件的 didFinishLaunchingWithOptions 方法中添加以下行

 self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
let mainStoryboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
var initialViewController = mainStoryboard.instantiateViewControllerWithIdentifier("myTable") as! UITableViewController //myTable is the storyboard id of your tableviewcontroller
self.window?.rootViewController = initialViewController
self.window?.makeKeyAndVisible()

关于ios - 从 AppDelegate 遍历到其他 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32567276/

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