我正在使用UIView
方法animateWithDuration:animations
动画滑动UIView
。它似乎略显波动。是否有更好的方法,如CoreGraphics,来完成更流畅的动画?
答案 0 :(得分:0)
您可以尝试使用不同的UIViewAnimationOptions
默认值为UIViewAnimationOptionCurveEaseInOut
,但您可以尝试其他人:
[UIView animateWithDuration:1.0
delay:0.0
options:UIViewAnimationOptionCurveEaseOut
animations:^{
v.center = CGPointMake(400, 400);
}
completion:^(BOOL finished) {
}
];