我想从我最小化我的应用程序的当前状态启动我的应用程序.
我的问题是:
我需要在app委托课中做些什么,在这里我的工作:
-(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 – 如何在后台运行状态维护我的应用程序全部内容,希望文章能够帮你解决ios – 如何在后台运行状态维护我的应用程序所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)