is there any way to reduce the speed of scrolling in the UIScrollView, i tried to use this method: scrollRectToVisible: animated: NO to accomplish this(by setting the animation to NO) but seems it's not the right way. All helps are welcome. Thanks.

link|improve this question
No, sorry this is my first post! My post is about the scrolling speed! – leCon Apr 28 '11 at 8:55
feedback

2 Answers

You can use a simple uiview animation to do that..

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:2];
[scrollview scrollRectToVisible:rect animated:NO];
[UIView commitAnimations];

that's the only way I am aware of.

ios 4 way (this will not work on iphones still running 3.x) :

[UIView animateWithDuration:2 animations:^(void){
    [scrollview scrollRectToVisible:rect animated:NO];
}];
link|improve this answer
Thanks Bastian, but this doesn't work at all! and Apple discourage using the method : setAnimationDuration [developer.apple.com/library/ios/#documentation/uikit/reference/… – leCon Apr 28 '11 at 8:59
that depends... the new functions won't work on a device still running 3.x os, so if you want to support all ios devices you have to use them. However I added the "new" way to my answer. – Bastian Apr 28 '11 at 9:08
Ok thanks, you're right blocks are not supported in 3.x IOS versions. But your solution doesn't work for me! did you try it before? What is point? – leCon Apr 28 '11 at 9:10
No, Bastian is definitely right. You just have to adapt his sample to your code. – Steven Kramer Apr 28 '11 at 9:14
i Was using this : [scrollViewPaging scrollRectToVisible: currentFrame animated: no], how can i adapt this? – leCon Apr 28 '11 at 9:17
show 3 more comments
feedback

I know this is not exactly what you asked for but it may help you to set deceleration rate with UIScrollView property

@property(nonatomic) float decelerationRate
link|improve this answer
Thanks Damien for the reply, i will investigate if i can use it. – leCon Apr 28 '11 at 12:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.