My app allows the user to drag a UIImageView around inside a UIScrollView. I want to stop it scrolling when the user is dragging the image. I am currently doing this like so:
Code:
scrollView.scrollEnabled = FALSE;
The problem with this is that it makes the scroll view scroll to the top. Is there a way to freeze the scroll view in its current position? TIA.