0

这是我的动画代码:

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 上,它并不流畅。有一点颤抖。

有人有这个问题吗?

4

1 回答 1

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!
于 2013-01-17T05:02:58.030 回答