From 4c3a055f5387605d878abee75df8ec4ea0d2943b Mon Sep 17 00:00:00 2001 From: DreamPiggy Date: Fri, 28 Jun 2019 15:32:31 +0800 Subject: [PATCH] Fix the documentation about SDAnimatedImage.animatedImageData to match its behavior --- SDWebImage/SDAnimatedImage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDWebImage/SDAnimatedImage.h b/SDWebImage/SDAnimatedImage.h index 9b814900..da2a3f95 100644 --- a/SDWebImage/SDAnimatedImage.h +++ b/SDWebImage/SDAnimatedImage.h @@ -85,8 +85,8 @@ @property (nonatomic, assign, readonly) SDImageFormat animatedImageFormat; /** - Current animated image data, you can use this instead of CGImage to create another instance. - If the current image is not animated image, this value is nil. + Current animated image data, you can use this to grab the compressed format data and create another animated image instance. + 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;