我正在使用这样的数组为一些图像设置动画
NSArray *weatherFrames = [NSArray array];
weatherFrames = [[NSArray alloc] initWithObjects:
[UIImage imageWithData:Data1],
[UIImage imageWithData:Data2],
[UIImage imageWithData:Data3],
[UIImage imageWithData:Data4],
[UIImage imageWithData:Data5],
nil];
weatherImage.animationImages = weatherFrames;
weatherImage.animationDuration = 10.00;
weatherImage.animationRepeatCount = 1;
[weatherImage release];
我想要做的是当有人触发呼叫(即来自 IBAction)时暂停动画。这是可能的还是有更好的方法来做到这一点?
谢谢