Disable UITableView vertical bounces when scrolling

后端 未结 5 1745
名媛妹妹
名媛妹妹 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:43

    You can use the below code with swift 4.x.x

    self.myTableView.alwaysBounceVertical = false
    

提交回复
热议问题