[Solved] Disable UIScrollView scrolling out of content


Set bounces property of UIScrollView to false to disable both horizontal and vertical bouncing. To disable horizontal bounce set false to alwaysBounceHorizontal and for vertical bounce set false to alwaysBounceVertical.

scrollView.bounces = false

or

enter image description here

solved Disable UIScrollView scrolling out of content