gpt4 book ai didi

ios - Xcode:当应用程序在后台运行超过 5 分钟时,转到 Storyboard 中的第一页?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:10:31 24 4
gpt4 key购买 nike

我正在 Xcode 中尝试我的第一个应用程序......并且有一个关于使用 Storyboard的问题:

我有:-Tab Bar Controller(第一个)与两个导航 Controller 连接......之后每个导航 Controller 都是一个 View Controller ......

问题:如果我的应用程序在后台运行的时间超过 5 分钟,我的应用程序是否有可能(可能使用 applicationWillEnterForeground)切换到这些 View Controller 之一? ...或者它再次从我在我的应用程序中的“第一个” View 开始?因为如果用户移动了他的手机,我想重新加载我的定位器。

尝试了我在“applicationDidEnterBackground”(在 AppDelegate.m 中)中在网上找到的一些代码,但无法使其正常工作:(

(或者我应该/可以从每个 View 生成一个序列到“第一个 View ”并在我的“applicationWillEnterForeground”中调用它吗?)

希望我能解释一下你是否理解我的问题;)

最好的问候格哈德

最佳答案

如果您需要做的是更改 tabBarController 的选定 View Controller ,您可以将此代码放入您的 applicationWillEnterForeground: 方法

UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
tabBarController.selectedIndex = 0;

编辑

如果你想回到导航堆栈中的第一个 Controller ,你可以这样做:

UINavigationController *navController = [tabBarController.viewControllers objectAtIndex:0];
[navController popToRootViewControllerAnimated:YES];

关于ios - Xcode:当应用程序在后台运行超过 5 分钟时,转到 Storyboard 中的第一页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16012125/

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