使用NSTimer的时候,每当APP进入后台,或者屏幕休眠后,NSTimer就会暂停。
要在后台NSTimer也运行,代码如下:
[[UIApplicationsharedApplication]beginBackgroundTaskWithExpirationHandler:nil];
NStimer theTimer=[NSTimerscheduledTimerWithTimeInterval:1.0target:selfselector:@selector(timerFireMethod)userInfo:nilrepeats:YES];
[[NSRunLoopcurrentRunLoop]addTimer:theTimerforMode:NSRunLoopCommonModes];