后台计时器IOS

时间:2014-07-15 13:08:41

标签: ios objective-c timer background

在我的应用程序中,用户可以通过计时器来规划活动。 即使应用程序在后台,我也希望这个计时器能够正常工作。 我怎么能这样做?!

[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timerFired) userInfo:nil repeats:YES];

1 个答案:

答案 0 :(得分:0)

如果您想在一段时间后触发某些操作,即使该应用处于后台,本地通知也可以为您提供帮助。

参考https://developer.apple.com/library/ios/DOCUMENTATION/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction.html

这里有教程http://www.appcoda.com/ios-programming-local-notification-tutorial/

注意:NSTimer将停止在应用程序输入背景