Merge pull request #2220 from dreampiggy/improvement_FLAnimatedImage_expose

Expose the read write to FLAnimatedImage associate to the UIImage to allow advanced feature like placeholder
This commit is contained in:
DreamPiggy 2018-02-18 15:41:43 +08:00 committed by GitHub
commit 3054a38c0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -25,8 +25,9 @@
/**
* The FLAnimatedImage associated to the UIImage instance when an animated GIF image load.
* For most cases this is read-only and you should avoid manually setting this value. Util some cases like using placeholder with a `FLAnimatedImage`.
*/
@property (nonatomic, strong, readonly, nullable) FLAnimatedImage *sd_FLAnimatedImage;
@property (nonatomic, strong, nullable) FLAnimatedImage *sd_FLAnimatedImage;
@end