How to tell if the user dragged the scroll view vs. me setting the content offset

727 views Asked by At

I am responding to the scrollViewDidScroll delegate method, and I want to be able to tell if the scrolling happened because the user dragged the table view or if it happened because I programmatically changed the offset.

1

There are 1 answers

0
Justin Martin On BEST ANSWER

Use scrollViewWillBeginDragging. This method does not get called when programmatically setting the offset.