Animate scrolling of UIScrollView with CoreAnimation

后端 未结 4 493
醉酒成梦
醉酒成梦 2021-02-07 09:24

Sorry for a big question, real question are bold in bottom, now some explanation.

I\'m use CoreAnimation in my project for animate some objects moving l

4条回答
  •  灰色年华
    2021-02-07 10:14

    You could use:

    [UIView animateWithDuration:duration animations:^ {
        [scrollView setContentOffset:destination animated:NO];
    }];
    

    You can set the duration of the animation this way.

提交回复
热议问题