这是我的动画代码:
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上,它并不流畅。有一点晃动。
有没有人有这个问题?
答案 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!