Mr.G
Mr.G

Reputation: 1275

How to reduce scrolling speed of UIScroll view

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

Answers (1)

p5systems
p5systems

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

Related Questions