Skip to content

Commit

Permalink
Update AFAutoPurgingImageCache.m
Browse files Browse the repository at this point in the history
NSString property should use `copy`.
  • Loading branch information
Huang-Libo committed May 6, 2018
1 parent 746f6c3 commit 357466d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UIKit+AFNetworking/AFAutoPurgingImageCache.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@interface AFCachedImage : NSObject

@property (nonatomic, strong) UIImage *image;
@property (nonatomic, strong) NSString *identifier;
@property (nonatomic, copy) NSString *identifier;
@property (nonatomic, assign) UInt64 totalBytes;
@property (nonatomic, strong) NSDate *lastAccessDate;
@property (nonatomic, assign) UInt64 currentMemoryUsage;
Expand Down

0 comments on commit 357466d

Please sign in to comment.