我正在动态滚动滚动视图,它使用
-(IBAction) animateTestingTwo{
[UIView animateWithDuration:4 animations:^{scroller.contentOffset = CGPointMake(0, 2000);}];
}
但是动画曲线不是线性的,它必须是这样的,所以我正在使用这个:
-(IBAction) animateTestingTwo{
[UIView animateWithDuration:4 options:UIViewAnimationOptionCurveLinear animations:^{scroller.contentOffset = CGPointMake(0, 2000);}];
}
但是它不起作用。有任何想法吗?
谢谢!!