ios - 无法使用 NSTimer 使 NSOperation 超时
<p><p>我正在尝试使用 <code>NSTimer</code> 使我的 <code>NSOperation</code> 超时,但我的计时器没有被触发。请看下面我在我的类中编写的代码,它是子类 <code>NSOperation</code>。</p>
<pre><code>- (void)start {
// Start the timer for Time out before the ping activity starts
self.timeOutTriggerTimmer = ;
[ addTimer:self.timeOutTriggerTimmer forMode:NSDefaultRunLoopMode];
// Check for cancellation
if () {
;
return;
}
// Executing
;
executing = YES;
;
// Begin
;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>将计时器添加到主运行循环而不是当前运行循环是最简单的:</p>
<pre><code>[ addTimer:self.timeOutTriggerTimmer forMode:NSDefaultRunLoopMode];
</code></pre>
<p>或者,您可以保持计时器原样(计划在当前运行循环上),但是您必须保持运行循环处于事件状态,也许在 <code>start</code> 的末尾添加如下内容> 方法(注意,Apple 推荐这个而不是 <code>run</code> 方法):</p>
<pre><code>while ( && [ runMode:NSDefaultRunLoopMode beforeDate:]);
</code></pre>
<p>但是这(就像您考虑的 <code>run</code> 方法一样)有效地保持 <code>start</code> 方法运行直到执行完成(使看起来是并发操作的行为更像非并发操作)。</p>
<p>我怀疑您已经这样做了,但以防万一,请确保在完成操作时 <code>invalidate</code> 您的计时器,否则计时器将保留操作直到计时器触发,这是不必要的延迟释放操作的资源(并调用 <code>cancelTheOperation</code>,即使操作很可能已经完成)。</p></p>
<p style="font-size: 20px;">关于ios - 无法使用 NSTimer 使 NSOperation 超时,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/22389237/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/22389237/
</a>
</p>
页:
[1]