菜鸟教程小白 发表于 2022-12-13 17:09:10

iphone - 减少弹跳 UITableView


                                            <p><p>是否有可能以某种方式<strong>降低 UITableView 顶部或末端的弹跳高度</strong>?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以在 <code>scrollViewDidScroll</code> 方法中检查和设置 <code>contentOffset</code> 属性:</p>

<pre><code>-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{   
    if (scrollView.contentOffset.y &lt;= -100)
    {
      CGPoint offset = scrollView.contentOffset;
      offset.y = -100;
      scrollView.contentOffset = offset;
    }   
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 减少弹跳 UITableView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5548815/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5548815/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 减少弹跳 UITableView