Reputation: 1275
I have a scrollview in my iphone application. In the runtime i'm adding multiple content page in to that and users can scroll the content horizontally.
Im faciing a issue here . consider if the user scrolled it quickly then sometimes thr will be a delay loading content of the page.
Is it possible for me to reduce the scrolling speed whether user tries to scroll the view. i want to delay the speed of scrolling
hope every one understood my question Thanks
Upvotes: 5
Views: 1697
Reputation: 51
Have you checked this option
scrollView.decelerationRate = UIScrollViewDecelerationRateFast;
don't get confused with 'RateFast' it is decelerationRate which means slow down.
Upvotes: 5