Fix the documentation about SDAnimatedImage.animatedImageData to match its behavior

This commit is contained in:
DreamPiggy 2019-06-28 15:32:31 +08:00
parent 4ba9befa31
commit 4c3a055f53
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@
@property (nonatomic, assign, readonly) SDImageFormat animatedImageFormat; @property (nonatomic, assign, readonly) SDImageFormat animatedImageFormat;
/** /**
Current animated image data, you can use this instead of CGImage to create another instance. Current animated image data, you can use this to grab the compressed format data and create another animated image instance.
If the current image is not animated image, this value is nil. If this image instance is a animated image created by using a animated image coder (which means using the API listed above or using `initWithAnimatedCoder:scale:`), this property is non-nil.
*/ */
@property (nonatomic, copy, readonly, nullable) NSData *animatedImageData; @property (nonatomic, copy, readonly, nullable) NSData *animatedImageData;