0

我有四个 UIViewController 用于显示不同的目的。如果我启动应用程序,它会显示委托功能。如果我去第二个或第三个视图控制器然后关闭应用程序。再次打开应用程序,它会显示第三个或第二个视图控制器。我需要从代表启动应用程序。怎么做?

4

2 回答 2

1

在 plist 文件中再添加一个字段

应用程序不在后台运行:让它成为现实

在此处输入图像描述

于 2013-10-21T08:53:32.857 回答
1

只需将您的导航控制器弹出到您的applicationDidBecomeActive方法中的根视图。

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    [navigationCtrl popToRootViewControllerAnimated:NO];
}
于 2013-10-21T08:57:17.097 回答