0
這是我的塊動畫代碼:UIView的幀序列動畫
[UIView animateWithDuration:.5f delay:15.0f options:UIViewAnimationTransitionNone animations:^{
animationContainer.image = [UIImage imageNamed:@"Hear 1_00.png"];
}completion:^(BOOL finished){
if(! finished) return;
[UIView animateWithDuration:.5f delay:15.0f options:UIViewAnimationTransitionNone animations:^{
animationContainer.image = [UIImage imageNamed:@"Hear 1_01.png"];
}completion:^(BOOL finished){
if(! finished) return;
}];
}];
我想用動畫分辨率320x480(iPhone的全屏幕)幀序列。我有120張照片,如果我嘗試使用NSArray
來設置動畫效果,iPhone似乎變慢了。你有建議或示例代碼,你可以與我分享或建議嗎?由於