gpt4 book ai didi

swift - 在 swift 中将第二个选项卡设置为默认选项卡

转载 作者:可可西里 更新时间:2023-10-31 23:59:18 25 4
gpt4 key购买 nike

我正在使用一个有 4 个选项卡的选项卡栏,我想将第二个选项卡设置为默认选项卡。我写了下面的代码:

self.tabBarController!.selectedIndex = 2

但是我得到了以下错误:

fatal error: unexpectedly found nil while unwrapping an Optional value

还有一件事我可以隐藏 UIViewController 或 UITabBarController 如果是,那么如何?

最佳答案

你应该在 AppDelegate 类的 didFinishLaunchingWithOptions 方法中这样做

func application(application: UIApplication!, didFinishLaunchingWithOptions launchOptions: NSDictionary!) -> Bool {

if self.window!.rootViewController as? UITabBarController != nil {
var tabbarController = self.window!.rootViewController as UITabBarController
tabbarController.selectedIndex = 2
}
else{
println("couldn't reach rootViewController named UITabBarController")
}
return true
}

关于swift - 在 swift 中将第二个选项卡设置为默认选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30886360/

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