I have a UIScrollView and I\'m calling scrollRectToVisible:animated:YES on it. I would like to set the speed at which it is animated. Can that be done?
A modern version with blocks:
[UIView animateWithDuration:1.0 animations:^{ [self.scrollView scrollRectToVisible:CGRectMake(...) animated:NO]; } completion:^(BOOL finished) { ... }];