使用NSTimer的時候,每當APP進入后臺,或者屏幕休眠后,NSTimer就會暫停。
要在后臺NSTimer也運行,代碼如下:
[[UIApplicationsharedApplication]beginBackgroundTaskWithExpirationHandler:nil];
NStimer theTimer=[NSTimerscheduledTimerWithTimeInterval:1.0target:selfselector:@selector(timerFireMethod)userInfo:nilrepeats:YES];
[[NSRunLoopcurrentRunLoop]addTimer:theTimerforMode:NSRunLoopCommonModes];