0

UIViewこのメソッドを使用して、animateWithDuration:animationsスライドをアニメーション化し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 に答える