UIScrollView disable vertical bounce only at bottom

后端 未结 7 789
被撕碎了的回忆
被撕碎了的回忆 2020-12-29 04:26

I\'ve been searching for a way to disable vertical bounce for a UIScrollView but only at bottom. I still need to have the bounce at the top.

Couldn\'t find anything.

7条回答
  •  無奈伤痛
    2020-12-29 05:09

    Let's disable the bounces when scroll to the bottom.

    scrollView.bounces = scrollView.contentOffset.y < scrollView.contentSize.height - scrollView.frame.height
    

提交回复
热议问题