123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- //
- // UIImageView+ZFCache.h
- // ZFPlayer
- //
- // Copyright (c) 2016年 任子丰 ( http://github.com/renzifeng )
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- #import <UIKit/UIKit.h>
- typedef void (^ZFDownLoadDataCallBack)(NSData *data, NSError *error);
- typedef void (^ZFDownloadProgressBlock)(unsigned long long total, unsigned long long current);
- @interface ZFImageDownloader : NSObject<NSURLSessionDownloadDelegate>
- @property (nonatomic, strong) NSURLSession *session;
- @property (nonatomic, strong) NSURLSessionDownloadTask *task;
- @property (nonatomic, assign) unsigned long long totalLength;
- @property (nonatomic, assign) unsigned long long currentLength;
- @property (nonatomic, copy) ZFDownloadProgressBlock progressBlock;
- @property (nonatomic, copy) ZFDownLoadDataCallBack callbackOnFinished;
- - (void)startDownloadImageWithUrl:(NSString *)url
- progress:(ZFDownloadProgressBlock)progress
- finished:(ZFDownLoadDataCallBack)finished;
- @end
- typedef void (^ZFImageBlock)(UIImage *image);
- @interface UIImageView (ZFCache)
- /**
- * Get/Set the callback block when download the image finished.
- *
- * The image object from network or from disk.
- */
- @property (nonatomic, copy) ZFImageBlock completion;
- /**
- * Image downloader
- */
- @property (nonatomic, strong) ZFImageDownloader *imageDownloader;
- /**
- * Specify the URL to download images fails, the number of retries, the default is 2
- */
- @property (nonatomic, assign) NSUInteger attemptToReloadTimesForFailedURL;
- /**
- * Will automatically download to cutting for UIImageView size of image.The default value is NO.
- * If set to YES, then the download after a successful store only after cutting the image
- */
- @property (nonatomic, assign) BOOL shouldAutoClipImageToViewSize;
- /**
- * Set the imageView `image` with an `url` and a placeholder.
- *
- * The download is asynchronous and cached.
- *
- * @param url The url for the image.
- * @param placeholderImageName The image name to be set initially, until the image request finishes.
- */
- - (void)setImageWithURLString:(NSString *)url placeholderImageName:(NSString *)placeholderImageName;
- /**
- * Set the imageView `image` with an `url` and a placeholder.
- *
- * The download is asynchronous and cached.
- *
- * @param url The url for the image.
- * @param placeholderImage The image to be set initially, until the image request finishes.
- */
- - (void)setImageWithURLString:(NSString *)url placeholder:(UIImage *)placeholderImage;
- /**
- * Set the imageView `image` with an `url`, placeholder.
- *
- * The download is asynchronous and cached.
- *
- * @param url The url for the image.
- * @param placeholderImage The image to be set initially, until the image request finishes.
- * @param completion A block called when operation has been completed. This block has no return value
- * and takes the requested UIImage as first parameter. In case of error the image parameter
- * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
- * indicating if the image was retrieved from the local cache or from the network.
- * The fourth parameter is the original image url.
- */
- - (void)setImageWithURLString:(NSString *)url
- placeholder:(UIImage *)placeholderImage
- completion:(void (^)(UIImage *image))completion;
- /**
- * Set the imageView `image` with an `url`, placeholder.
- *
- * The download is asynchronous and cached.
- *
- * @param url The url for the image.
- * @param placeholderImageName The image name to be set initially, until the image request finishes.
- * @param completion A block called when operation has been completed. This block has no return value
- * and takes the requested UIImage as first parameter. In case of error the image parameter
- * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
- * indicating if the image was retrieved from the local cache or from the network.
- * The fourth parameter is the original image url.
- */
- - (void)setImageWithURLString:(NSString *)url
- placeholderImageName:(NSString *)placeholderImageName
- completion:(void (^)(UIImage *image))completion;
- @end
|