在NSTask的源代码中,我在方法waitUntilExit中找到了有趣的地方:

- (void) waitUntilExit
{
    NSTimer *timer = nil;

    while ([self isRunning])
    {
        NSDate  *limit = [[NSDate alloc] initWithTimeIntervalSinceNow: 0.1];
        if (timer == nil)
        {
           timer = [NSTimer scheduledTimerWithTimeInterval: 0.1
                                                    target: nil
                                                  selector: @selector(class)
                                                  userInfo: nil
                                                   repeats: YES];
        }

        [[NSRunLoop currentRunLoop] runMode: NSDefaultRunLoopMode
                                 beforeDate: limit];
        RELEASE(limit);
   }
   [timer invalidate];
}

我在这里无法理解NSTimer的目的。谁的方法类将被调用?

最佳答案

计时器的目标是nil,因此选择器实际上是不相关的:您可以将任何消息发送到nil,然后将其简单地丢弃。

编译器仅验证选择器是否引用了某些已知方法,在这种情况下为class协议的 NSObject 方法。

对于以下runMode语句,此虚拟计时器是必需的
NSRunLoop documentation所述,否则可能立即终止:

如果没有输入源或计时器附加到运行循环,则此方法立即退出并返回NO;否则,此方法将退出。除此以外。

09-25 18:45