How to run NSTimer in background beyond 180sec in iOS 7?

痴心易碎 提交于 2019-11-27 01:59:44
null

Unless you enable one of the Background modes, it is not gonna work.

Why?

  • You have around 10 minutes of background execution after this the timer is stopped by ios.

  • The timer will not fire after app is locked (iOS7), since ios suspends the foreground app and bgTask will not get fire again.

There is some workarounds, consider to check below question:

iphone - NSTimers in background

Scheduled NSTimer when app is in background?

NSTimer on background IS working

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!