UIScrollView scrolling speed [duplicate]
问题 This question already has answers here : Change UIScrollView scroll speed (2 answers) Closed 6 years ago . Is there any way to reduce the speed of scrolling in the UIScrollView, I tried to use scrollRectToVisible: animated: NO to accomplish this (by setting the animation to NO) but seems it's not the right way. 回答1: You can use a simple uiview animation to do that.. [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:2]; [scrollview scrollRectToVisible:rect animated:NO];