6

我有一个应用程序,我想动态放大和缩小 imageView。

[scrollView zoomToRect:CGRectMake(x,y,z,k) animated:YES];习惯放大,但我希望动画慢一点……有没有办法设置动画速度?

4

1 回答 1

7

看我的另一个答案。您可以将动画持续时间设置为1.0秒。

代替:
cursorView.center = locationOfTouch;

你必须设置:

[UIView beginAnimations:nil context:NULL]
[UIView setAnimationDuration:1.0];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];

[scrollView zoomToRect:CGRectMake(x,y,z,k) animated:NO]; // NO is necessary!

[UIView commitAnimations];
于 2012-05-10T13:58:20.857 回答