如何在iOS中获得最流畅的动画效果?

时间:2012-10-19 21:43:10

标签: ios uiview core-animation core-graphics

我正在使用UIView方法animateWithDuration:animations动画滑动UIView。它似乎略显波动。是否有更好的方法,如CoreGraphics,来完成更流畅的动画?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用不同的UIViewAnimationOptions

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

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

                 }
 ];