UIScrollView scrollRectToVisible at custom speed

前端 未结 2 1395
我在风中等你
我在风中等你 2020-12-29 15:39

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?

2条回答
  •  攒了一身酷
    2020-12-29 16:29

    A modern version with blocks:

    [UIView animateWithDuration:1.0 animations:^{
        [self.scrollView scrollRectToVisible:CGRectMake(...) animated:NO];
    } completion:^(BOOL finished) {
        ...
    }];
    

提交回复
热议问题