iPhone - 当应用程序在后台运行时更改应用程序设置

发布于 2024-09-10 22:40:04 字数 94 浏览 6 评论 0原文

我遇到的问题是,如果我在应用程序在后台运行时对应用程序设置进行更改,则在重新启动之前,更改在我的应用程序中不可用。我错过了什么还是就是这样?

非常感谢。 sj

The problem i am having is if i make changes to the application settings while the application is running in the background the changes aren't available in my app until it is restarted. Am i missing something or is this way it is?

Thanks very much. Sj

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不醒的梦 2024-09-17 22:40:10

在您的应用程序委托中使用

-(void)applicationWillEnterForeground:(UIApplication *)application

 -(void)applicationDidBecomeActive:(UIApplication *)application

来重新配置您的应用程序。第一个是当您的应用程序在后台恢复时发送的。第二个在简历首次启动后发送。

请参阅本文中的图表< /a> 了解详细信息。

Use

-(void)applicationWillEnterForeground:(UIApplication *)application

or

 -(void)applicationDidBecomeActive:(UIApplication *)application

in your App delegate to reconfigure your app. The first is sent when your app resumes after being in the background. The second is sent both on resume and after the first time launch.

See the chart in this article for details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文