《iOS面试之道》-勘误2

一、如何保证NSTimer不受Runloop的影响,准时触发

  书中提到两种方案,

  一种是改变timer加入到runloop中的Mode,为CommonModes不受Runloop的Mode影响

  第二种是下面图片中的方案,这个方案中的代码是存在问题的

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [self testOne:1];
//    [self testOne:2];
//    [self testOne:3];
//    [self testOne:4];
//
//    [self testOne:5];
//    [self testOne:6];
//    [self testOne:7];
//    [self testOne:8];
}
 
- (void)testOne:(NSInteger)i
{
    dispatch_async(dispatch_get_global_queue(0, 0), ^{
         
        NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1 repeats:YES block:^(NSTimer * _Nonnull timer) {
            [self tick:nil];
        }];
         
        [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
         
        NSLog(@"%s", __FUNCTION__);
    });
}
 
- (void)tick:(NSTimer *)timer
{
    NSLog(@"%s", __FUNCTION__);
}
 
 
@end

  这个代码执行完后,定时器中的方法是不会触发的。

  因为这个线程已经结束,线程持有的Runloop也结束了。

  除非,这个线程不会结束,类似下面

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
dispatch_async(dispatch_get_global_queue(0, 0), ^{
     
    NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1 repeats:YES block:^(NSTimer * _Nonnull timer) {
        [self tick:nil];
    }];
     
    [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
     
    NSLog(@"%s", __FUNCTION__);
     
    while ([[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]) {
         
    }
});

  

 

posted @   兜兜有糖的博客  阅读(327)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
点击右上角即可分享
微信分享提示