序列幀動畫概念和序列幀動畫實現(xiàn)
方式1:
-[UIImage animatedImageWithImages:動畫圖片數(shù)組 duration:持續(xù)時間]; // 可以獲取一個能做動畫的UIImage對象"gif圖片"
方式2:
self.imageView.animationImages = array; // 裝圖片的數(shù)組(需要做動畫的圖片數(shù)組)
self.imageView.animationDuration = 2; // 動畫時間
self.imageView.animationRepeatCount = 1; // 重復(fù)次數(shù) 0 表示重復(fù)
[self.imageView startAnimating]; // 開始序列幀動畫