我正在使用这种方法来制作动画UIImageView
:
[imageView stopAnimating];
imageView.animationImages = set;
imageView.animationDuration = 0.4;
imageView.animationRepeatCount = 1;
[imageView startAnimating];
那套是NSMutableArray
图像。我的问题是,当动画完成时, UIImageView 不会保留最后一帧set
并带回动画之前在 imageview 中的图像。
我怎样才能使最后一帧成为imageview的图像?