File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22
33 s . name = "LBCache"
4- s . version = "1.0.2 "
4+ s . version = "1.0.3 "
55 s . summary = "LBCache image cache framework"
66 s . description = <<-DESC
77 LBCache is an asynchronous image cache framework for iOS.
Original file line number Diff line number Diff line change @@ -45,11 +45,11 @@ typedef NS_ENUM(NSUInteger, LBCacheError){
4545
4646+ (LBCacheManager * __nonnull) sharedInstance ;
4747
48- - (ImageOperation * __nullable) downloadImageFromURLString : (NSString * __nonnull ) urlString options : (LBCacheImageOptions) options progressBlock : (ProgressBlock __nullable) progressBlock completionBlock : (LBCacheImageBlock __nonnull) completionBlock ;
48+ - (ImageOperation * __nullable) downloadImageFromURLString : (NSString * __nullable ) urlString options : (LBCacheImageOptions) options progressBlock : (ProgressBlock __nullable) progressBlock completionBlock : (LBCacheImageBlock __nonnull) completionBlock ;
4949
50- - (NSString * __nullable) imagePathLocationForURLString : (NSString * __nonnull ) key ;
50+ - (NSString * __nullable) imagePathLocationForURLString : (NSString * __nullable ) key ;
5151
52- - (UIImage * __nullable) imageForURLString : (NSString * __nonnull ) urlString ;
52+ - (UIImage * __nullable) imageForURLString : (NSString * __nullable ) urlString ;
5353
5454- (NSURL * __nonnull)applicationCachesDirectory ;
5555- (NSURL * __nonnull) getLBCacheDirectory ;
Original file line number Diff line number Diff line change 1111
1212@interface UIImageView (LBcategory)
1313
14- - (void ) setImageWithURLString : (NSString * __nonnull ) urlString placeholderImage : (UIImage * __nullable) placeholderImage ;
14+ - (void ) setImageWithURLString : (NSString * __nullable ) urlString placeholderImage : (UIImage * __nullable) placeholderImage ;
1515
16- - (void ) setImageWithURLString : (NSString * __nonnull ) urlString placeholderImage : (UIImage * __nullable) placeholderImage options : (LBCacheImageOptions) option ;
16+ - (void ) setImageWithURLString : (NSString * __nullable ) urlString placeholderImage : (UIImage * __nullable) placeholderImage options : (LBCacheImageOptions) option ;
1717
18- - (void ) setImageWithURLString : (NSString * __nonnull ) urlString placeholderImage : (UIImage * __nullable) placeholderImage options : (LBCacheImageOptions) option completionBlock : (LBCacheImageBlock __nullable) completionBlock ;
18+ - (void ) setImageWithURLString : (NSString * __nullable ) urlString placeholderImage : (UIImage * __nullable) placeholderImage options : (LBCacheImageOptions) option completionBlock : (LBCacheImageBlock __nullable) completionBlock ;
1919
20- - (void ) setImageWithURLString : (NSString * __nonnull ) urlString placeholderImage : (UIImage * __nullable) placeholderImage options : (LBCacheImageOptions) option progressBlock : (ProgressBlock __nullable) progressBlock completionBlock : (LBCacheImageBlock __nullable) completionBlock ;
20+ - (void ) setImageWithURLString : (NSString * __nullable ) urlString placeholderImage : (UIImage * __nullable) placeholderImage options : (LBCacheImageOptions) option progressBlock : (ProgressBlock __nullable) progressBlock completionBlock : (LBCacheImageBlock __nullable) completionBlock ;
2121
22- - (UIImage * __nullable) imageForURLString : (NSString * __nonnull ) urlString ;
22+ - (UIImage * __nullable) imageForURLString : (NSString * __nullable ) urlString ;
2323
2424- (void ) cancelDownload ;
2525
You can’t perform that action at this time.
0 commit comments