菜鸟教程小白 发表于 2022-12-12 20:33:01

ios - 重新加载数据后如何停止tableview的滚动?


                                            <p><p>我尝试了其他人提供的一些方法,但它不起作用。</p>

<pre><code>CGPoint offset = tableView.contentOffset;
;
;
</code></pre>

<p>此时我无法获取索引路径。如何防止表格 View 滚动?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果你想停止tableview的滚动设置这个</p>

<pre><code>self.tableView.scrollEnabled = NO;
</code></pre>

<p>有时你想像这样启动tableview的滚动</p>

<pre><code>self.tableView.scrollEnabled = YES;
</code></pre>

<p>希望这会对你有所帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 重新加载数据后如何停止tableview的滚动?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37787807/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37787807/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 重新加载数据后如何停止tableview的滚动?