定時(shí)不準(zhǔn)原因
- NSDefaultRunLoopMode 模式中 優(yōu)先處理輸入源事件煎殷,處理輸入源事件時(shí)衩辟,不能處理定時(shí)源事件
- 當(dāng)主線程阻塞時(shí),定時(shí)器也會(huì)阻塞
- 如果UITableView滑動(dòng)時(shí)立叛,runloop的mode切換為UITrackingRunLoopMode,計(jì)時(shí)中斷
//這里的本質(zhì)是 NSDefaultRunLoopMode 不能使用這種事件循環(huán)的模式
// [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timerAction) userInfo:nil repeats:YES];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
//1.手動(dòng)開啟定時(shí)器
NSTimer *timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(timerAction) userInfo:nil repeats:YES];
//2.手動(dòng)加入到事件循環(huán)中
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
//3.手動(dòng)開啟定時(shí)器
[timer fire];
//NSRunLoop 事件循環(huán) 處理的事件有:1.輸入源事件(滑動(dòng)事件患蹂、觸摸事件)2.定時(shí)源事件
//NSDefaultRunLoopMode 模式中 優(yōu)先處理輸入源事件,處理輸入源事件時(shí)霞掺,不能處理定時(shí)源事件
[[NSRunLoop currentRunLoop] run];
});