Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 UIScrollView 有非常自定义的动画需求,而不仅仅是减速。
在不干扰默认动画行为的情况下,为 UIScrollView 的 contentOffset 或边界设置动画的最安全方法是什么?
如果你创建一个动画块,你可以通过直接设置 contentOffset 'tablView.contentOffset = foo'(或关闭动画'tableView setContentOffset:foo animated:NO')来为 tableView 移动设置动画。这解耦了 tableview 自己的内部动画。