菜鸟教程小白 发表于 2022-12-12 22:17:20

ios - 由于 NSTimer,UITableView 滚动受到干扰


                                            <p><p>在一个类中,我添加了一个 <code>UITableView</code> 和一个 <code>NSTimer</code>。 </p>

<p>当我尝试滚动 <code>UITableView</code> 时,它的 <strong>卡住</strong>。</p>

<p>如果没有添加那个 <code>NSTimer</code>,那么 <code>UITableView</code> 工作正常。</p>

<p>这是我添加 <code>NSTimer</code></p> 的代码

<pre><code>if (self.timer != nil)
{
    ;
    self.timer = nil;
}
self.timer = [NSTimer scheduledTimerWithTimeInterval:0.0 target:self
                                       selector:@selector(updateClock)
                                       userInfo:nil repeats:YES];
[ addTimer:self.timer forMode:NSRunLoopCommonModes];
</code></pre>

<p>请建议我任何解决方案以及我做错了什么。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您应该至少在 0.1 秒以上或 1 秒以上调用计时器,然后您的应用程序的 tableview 将不会触发</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 由于 NSTimer,UITableView 滚动受到干扰,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23708939/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23708939/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 由于 NSTimer,UITableView 滚动受到干扰