UIView
このメソッドを使用して、animateWithDuration:animations
スライドをアニメーション化しUIView
ます。少し途切れがちです。よりスムーズなアニメーションを実現するための、CoreGraphicsのようなより良い方法はありますか?
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 に答える