How to reduce scrolling speed of UIScroll view

iphone, uiscrollview

Solution

Have you checked this option

scrollView.decelerationRate = UIScrollViewDecelerationRateFast;

don't get confused with 'RateFast' it is decelerationRate which means slow down.

Problem

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

Original source

Related problems