iPhone App how to programmatically detect Scrolling of scrollview?
iPhone App how to check scrollview did Scroll?
iPhone App how to programmatically detect Scrolling of scrollview? iPhone App how to check
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You are looking for the delegate method:
In your implementation of that method, you can check the content offset value for the new position.
The docs are here:
http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIScrollViewDelegate_Protocol/Reference/UIScrollViewDelegate.html
Also, if you just want to know the result of the scrolling after it is finished, see this answer for a similar question:
How to detect when a UIScrollView has finished scrolling