iPhoneOS,使用 applicationWillResignActive
我想使用 applicationWillResignActive 这个函数执行一些任务。 在应用程序因来电、消息或用户手动关闭而关闭之前。
我可以使用此功能发送电子邮件/应用程序短信吗?这些任务是否会被执行,或者应用程序是否会由于上述中断而立即退出。 谢谢大家。
泰穆尔
I want to use this function applicationWillResignActive perform some tasks.
before the application shuts down due to incoming call, message or user close it manually.
Can i send an email message/in app sms using this function ? Will those tasks would be performed or the application would immediately quit due to the above mentioned interrupts.
Thank you all.
Taimur
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 iOS 上发送电子邮件或短信之前,您必须向用户显示标准 UI(MFMailComposeViewController 或 MFMessageComposeViewController),但是当应用程序要退出活动状态时,您无法呈现任何新 UI,因此答案是否定的 - 这些任务不能执行的
Before sending email or sms on iOS you have to display standard UI to user (either MFMailComposeViewController or MFMessageComposeViewController), but you can't present any new UI when application is going to resign active state, so the answer is no - those tasks cannot be performed