how to reduce the speed of ScrollView.
because of a problem with images in the TableView out of order. I want to make the Scroll slower or can also be (if possible) it stops faster
how to reduce the speed of ScrollView.
because of a problem with images in the TableView out of order. I want to make the Scroll slower or can also be (if possible) it stops faster
AFAIK, you can't slow down the scrollviews scrolling speed. It would probably feel quite awkward too, because the user is accustomed to move the content around as he would, for example, move around a piece of paper on on a table with his finger.
What you can do however is making the scrollview decelerating quickly, which means it would not keep scrolling or would even stop immediately after the touch ends. (See decelerationRate
property of UIScrollView)
Another option would be placing another view atop of your scrollview and let it intercept all touch events, so you have the opportunity to choose the ratio between finger movement and content movement according to your needs. This would be quite tedious though, since you would have to implement all the bouncing, inertia movement and - most important - telling scrolling events from other actions and pass them to the interface elements below.