0

我正在使用该UIView方法animateWithDuration:animations为滑动 a 设置动画UIView。它看起来有点波涛汹涌。有没有更好的方法,比如 CoreGraphics,来完成更流畅的动画?

4

1 回答 1

0

你可以尝试使用不同的UIViewAnimationOptions

默认为UIViewAnimationOptionCurveEaseInOut,但您可以尝试其他:

[UIView animateWithDuration:1.0
                      delay:0.0
                    options:UIViewAnimationOptionCurveEaseOut
                 animations:^{
                     v.center = CGPointMake(400, 400);
                 }
                 completion:^(BOOL finished) {

                 }
 ];
于 2012-10-19T21:55:10.393 回答