Disable UITableView vertical bounces when scrolling

后端 未结 5 1695
名媛妹妹
名媛妹妹 2020-12-06 09:05

How do I disable the bounce effect when vertically scrolling a UITableView? Right now if I scroll anywhere near the bottom, the view scrollbar bounces right up. I would like

5条回答
  •  有刺的猬
    2020-12-06 09:36

    If you want to do it programmatically, you can do it like that:

    self.myTableView.alwaysBounceVertical = NO;
    

提交回复
热议问题