iphone - 如何在这个简单的 while 循环中使用 NSTimer?
<p><p>我有一个 -(void) 方法正在执行,并且在某一时刻它进入了一个 while 循环,该循环在它要求它们的那一刻直接从加速度计获取值</p>
<p>我浏览了有关 NSTimer 类的文档,但我无法理解在我的案例中我应该如何使用这个对象:</p>
<p>例如</p>
<pre><code>-(void) play
{
......
...
if(accelerationOnYaxis >0 && accelerationOnYaxis < 0.9 )
{
startTimer;
}
while(accelerationOnYaxis >0 && accelerationOnYaxis < 0.9)
{
if(checkTimer >= 300msec)
{
printOut_AccelerationStayedBetweenThoseTwoValuesForAtLeast300msecs;
break_Out_Of_This_Loop;
}
}
stopTimerAndReSetTimerToZero;
.....
more code...
....
...
}
</code></pre>
<p>有什么帮助吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你不能用 <code>NSTimer</code> 来做,因为它需要你的代码退出才能触发。 <code>NSTimer</code> 使用事件循环来决定什么时候给你回电话;如果您的程序在其 <code>while</code> 循环中持有控件,则计时器无法触发,因为永远不会到达检查是否该触发的代码。</p>
<p>最重要的是,在忙碌的循环中停留近一秒半会耗尽您的电池。如果你只需要等待<code>1.4s</code>,你最好调用<code>sleepForTimeInterval:</code>,像这样:</p>
<pre><code>;
</code></pre>
<p>您也可以使用 <a href="http://www.cplusplus.com/reference/clibrary/ctime/clock/" rel="noreferrer noopener nofollow"><code>clock()</code></a>从 <code><time.h></code> 来测量短时间间隔,像这样:</p>
<pre><code>clock_t start = clock();
clock_t end = start + (3*CLOCKS_PER_SEC)/10; // 300 ms == 3/10 s
while(accelerationOnYaxis >0 && accelerationOnYaxis < 0.9)
{
if(clock() >= end)
{
printOut_AccelerationStayedBetweenThoseTwoValuesForAtLeast300msecs;
break_Out_Of_This_Loop;
}
}
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 如何在这个简单的 while 循环中使用 NSTimer?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/11728570/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/11728570/
</a>
</p>
页:
[1]