I\'ve got a a few UIScrollView on a page. You can scroll them independently or lock them together and scroll them as one. The problem occurs when they are locke
UIScrollView
Try
id scrollDelegate = scrollView.delegate; scrollView.delegate = nil; scrollView.contentOffset = point; scrollView.delegate = scrollDelegate;
Worked for me.