2013-01-10 91 views
0

這是我的動畫代碼:爲什麼動畫不能在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上,它並不流暢。有一點搖晃。

有沒有人有這個問題?

回答

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!