为什么动画在ipad mini中运行不顺畅?

时间:2013-01-10 04:20:00

标签: ios animation ipad-mini

这是我的动画代码:

CGRect newRect = [self paraStyle:STYLE_DOWNUP currRect:myView.frame];
[UIView animateWithDuration:0.5 animations:^{
    myView.frame = newRect;
} completion:^(BOOL finished) {
    ......
}];

这是实现UIView动画的常用动画代码。此代码在iPhone 4和iPad 2上运行良好。但在iPad mini上,它并不流畅。有一点晃动。

有没有人有这个问题?

1 个答案:

答案 0 :(得分:0)

这是我的错误。原因是:

1. The ipad mini is not very power in image process.
2. The background image of the animation view is translucent. So it cost very murch!