0

我在 Xcode 4 中编写了一个简单的 iPad 应用程序。当我退出应用程序然后返回应用程序时,它会从我退出前的最后一页开始。如何在每次重启时让应用在指定页面重启?

4

1 回答 1

0

在您的AppDelegate.m文件中查找方法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.
}
于 2012-09-12T04:47:13.587 回答