美文网首页
Objective-C 带有 block 的 NSTimer

Objective-C 带有 block 的 NSTimer

作者: 张嘉夫 | 来源:发表于2017-03-28 23:51 被阅读197次

有的时候 NSTimer 的调度任务比较复杂,需要在调度方法中执行异步操作,并且在异步操作中需要回调原方法中的回调参数。

Swift 3 介绍了一个带有 block 回调的新方法:

Timer(timeInterval: gameInterval, repeats: false) { _ in
    print("herp derp")
}

Objective-C 也有对应的版本:

[NSTimer scheduledTimerWithTimeInterval:gameInterval repeats:NO block:^(NSTimer *timer) {
    NSLog(@"herp derp");
}];

但这个方法需要 target 系统版本大于等于 iOS10, macOS 12, tvOS 10, watchOS 3。

如果项目需要支持以上系统以下的版本的时候,需要怎么做呢?

我们可以用一种很聪明的方法来实现:

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:0.7
      target:[NSBlockOperation blockOperationWithBlock:^{ /* do this! */ }]
      selector:@selector(main)
      userInfo:nil
      repeats:NO
];

完美!

相关文章

网友评论

      本文标题:Objective-C 带有 block 的 NSTimer

      本文链接:https://www.haomeiwen.com/subject/gpgsottx.html