如果应用程序在 NSURLConnection 异步请求返回之前睡眠或死亡怎么办?
当 NSURLConnection 异步请求返回时,如果应用程序已死亡、即将死亡、睡眠或正在退出,会发生什么情况?
在我看来,在我的异步函数假定程序数据有效之前,我最好至少保留一个表示“程序正在退出”的标志。
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在iOS 4.0及更高版本中,当用户关闭应用程序时,它会进入挂起状态。除非您告诉它这样做,否则委托回调将不会触发,直到用户再次打开应用程序。您可以通过在回调中编写一些 NSLog 来测试自己。然后,在测试设备上运行该应用程序,并在看到连接开始后尝试关闭该应用程序。等待一段时间并重新打开应用程序(仍在 Xcode 中“运行”),并观察委托回调被调用。
如果您希望连接在用户关闭应用程序后继续运行,请通读 '在后台执行代码'。
In iOS 4.0 and above, when the user closes the app, it is put into a suspended state. Unless you tell it to do otherwise, the delegate callbacks won't fire until the user opens the app again. You can test yourself by writing some NSLogs in your callbacks. Then, run the app on a test device, and try closing the app just after you see the connection start. Wait a while and reopen the app (still 'running' in Xcode), and watch as the delegate callbacks get called.
If you'd like the connection(s) to continue to run after the app is closed by the user, then have a read through 'Executing Code in the Background' in the iOs Application Programming Guide.