gpt4 book ai didi

ios - 我如何在后台保持我的应用程序处于运行状态

转载 作者:可可西里 更新时间:2023-11-01 06:08:46 27 4
gpt4 key购买 nike

我的应用程序没有从当前状态启动,如果不关闭我的应用程序,我将进入后台。我只是最小化我的应用程序但没有关闭我的应用程序。如果再次启动我的应用程序,它将像启动画面一样从启动开始。

我想从最小化我的应用程序的当前状态启动我的应用程序。

我的问题是:

我需要在应用程序委托(delegate)类中做什么,这里是我的解决方法:

-(void) applicationDidEnterBackground:(UIApplication*)application {
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"SplashLoadCheck"];
[[NSUserDefaults standardUserDefaults]synchronize];
if( [navController_ visibleViewController] == director_ )
[director_ stopAnimation];
}

-(void) applicationWillEnterForeground:(UIApplication*)application
{
if( [navController_ visibleViewController] == director_ )
[director_ startAnimation];
}

- (void)applicationWillTerminate:(UIApplication *)application {

[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"SplashLoadCheck"];
[[NSUserDefaults standardUserDefaults]synchronize]; CC_DIRECTOR_END();
}

最佳答案

您可以设置以下 plist 标志。

"Application Does Not Run in Background" = NO.

这也将允许应用程序在后台运行。

关于ios - 我如何在后台保持我的应用程序处于运行状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21544911/

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