应用程序进入后台——应用程序运行时点击主页按钮
当我们点击 iPhone 上的主页按钮时,即当应用程序进入后台时,调用的方法的顺序是什么?
基本上,我想在我的应用程序进入后台之前进行服务器调用。我正在 applicationWillResignActive:
中编写服务器调用代码,但有时会执行,有时不会。
我需要一个解决方案。
What is the sequence of methods that gets called when we tap on the home button on iPhone, i.e. when an application is going in background.
Basically, I want to make a server call before my app goes in background. I am writing my server call code in applicationWillResignActive:
, but sometimes it executes and sometimes it doesn't.
I need a solution for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从应用程序委托文件本身:
尝试使用此方法......
From the app delegate file itself:
Try using this method.....