Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 348
Mr.G Avatar asked Feb 21 '13 06:02

Mr.G


1 Answers

Have you checked this option

scrollView.decelerationRate = UIScrollViewDecelerationRateFast;

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

like image 167
p5systems Avatar answered Oct 16 '22 10:10

p5systems