iPhone - 当应用程序在后台运行时更改应用程序设置
我遇到的问题是,如果我在应用程序在后台运行时对应用程序设置进行更改,则在重新启动之前,更改在我的应用程序中不可用。我错过了什么还是就是这样?
非常感谢。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的应用程序委托中使用
或
来重新配置您的应用程序。第一个是当您的应用程序在后台恢复时发送的。第二个在简历和首次启动后发送。
请参阅本文中的图表< /a> 了解详细信息。
Use
or
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.