|
|
@@ -166,12 +166,13 @@
|
|
|
};
|
|
|
self.player.animationLoopHandler = ^(NSUInteger loopCount) {
|
|
|
@strongify(self);
|
|
|
- self.currentLoopCount = loopCount;
|
|
|
// Progressive image reach the current last frame index. Keep the state and pause animating. Wait for later restart
|
|
|
if (self.isProgressive) {
|
|
|
NSUInteger lastFrameIndex = self.player.totalFrameCount - 1;
|
|
|
[self.player seekToFrameAtIndex:lastFrameIndex loopCount:0];
|
|
|
[self.player pausePlaying];
|
|
|
+ } else {
|
|
|
+ self.currentLoopCount = loopCount;
|
|
|
}
|
|
|
};
|
|
|
|