ios每次打开应用程序时都会加载第一页

时间:2011-11-12 07:07:16

标签: ios iphone

无论如何都要让应用程序每次打开时加载第一页?

如果有人可以提供帮助,那就太好了, 感谢

3 个答案:

答案 0 :(得分:2)

您可以使用AppDelegate

执行此操作

只需将重新加载的代码添加到第一页。

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    /*
     Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
     */
}

答案 1 :(得分:1)

输入info.plist app key“应用程序不在后台运行”并输入值YES

答案 2 :(得分:0)

在你的app delegate中,将tabBar连接到iVar,然后执行以下操作:

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    self.mayTabBar.selectedIndex=0;
}

这将切换到tabBar中的第一个(最左边)项目。