スクロールビューを動的にスクロールしていますが、次を使用して動作します
-(IBAction) animateTestingTwo{
[UIView animateWithDuration:4 animations:^{scroller.contentOffset = CGPointMake(0, 2000);}];
}
ただし、アニメーション曲線は線形ではありません。線形にする必要があるため、これを使用しています。
-(IBAction) animateTestingTwo{
[UIView animateWithDuration:4 options:UIViewAnimationOptionCurveLinear animations:^{scroller.contentOffset = CGPointMake(0, 2000);}];
}
しかし、それは機能していません。何か案は?
ありがとう!!