lipengwei
2019-10-10 63375242d875e9ba350308d29e23ccf12a00a0f9
commit | author | age
6e1425 1 // UIImageView+AFNetworking.h
633752 2 // Copyright (c) 2011–2016 Alamofire Software Foundation ( http://alamofire.org/ )
6e1425 3 //
H 4 // Permission is hereby granted, free of charge, to any person obtaining a copy
5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE.
21
22 #import <Foundation/Foundation.h>
23
633752 24 #import <TargetConditionals.h>
6e1425 25
633752 26 #if TARGET_OS_IOS || TARGET_OS_TV
6e1425 27
H 28 #import <UIKit/UIKit.h>
29
30 NS_ASSUME_NONNULL_BEGIN
31
633752 32 @class AFImageDownloader;
6e1425 33
H 34 /**
35  This category adds methods to the UIKit framework's `UIImageView` class. The methods in this category provide support for loading remote images asynchronously from a URL.
36  */
37 @interface UIImageView (AFNetworking)
38
39 ///------------------------------------
633752 40 /// @name Accessing the Image Downloader
6e1425 41 ///------------------------------------
H 42
43 /**
633752 44  Set the shared image downloader used to download images.
6e1425 45
633752 46  @param imageDownloader The shared image downloader used to download images.
6e1425 47  */
633752 48 + (void)setSharedImageDownloader:(AFImageDownloader *)imageDownloader;
L 49
50 /**
51  The shared image downloader used to download images.
52  */
53 + (AFImageDownloader *)sharedImageDownloader;
6e1425 54
H 55 ///--------------------
56 /// @name Setting Image
57 ///--------------------
58
59 /**
60  Asynchronously downloads an image from the specified URL, and sets it once the request is finished. Any previous image request for the receiver will be cancelled.
61
62  If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished.
63
64  By default, URL requests have a `Accept` header field value of "image / *", a cache policy of `NSURLCacheStorageAllowed` and a timeout interval of 30 seconds, and are set not handle cookies. To configure URL requests differently, use `setImageWithURLRequest:placeholderImage:success:failure:`
65
66  @param url The URL used for the image request.
67  */
68 - (void)setImageWithURL:(NSURL *)url;
69
70 /**
71  Asynchronously downloads an image from the specified URL, and sets it once the request is finished. Any previous image request for the receiver will be cancelled.
72
73  If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished.
74
75  By default, URL requests have a `Accept` header field value of "image / *", a cache policy of `NSURLCacheStorageAllowed` and a timeout interval of 30 seconds, and are set not handle cookies. To configure URL requests differently, use `setImageWithURLRequest:placeholderImage:success:failure:`
76
77  @param url The URL used for the image request.
78  @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the image view will not change its image until the image request finishes.
79  */
80 - (void)setImageWithURL:(NSURL *)url
81        placeholderImage:(nullable UIImage *)placeholderImage;
82
83 /**
84  Asynchronously downloads an image from the specified URL request, and sets it once the request is finished. Any previous image request for the receiver will be cancelled.
85
86  If the image is cached locally, the image is set immediately, otherwise the specified placeholder image will be set immediately, and then the remote image will be set once the request is finished.
87
88  If a success block is specified, it is the responsibility of the block to set the image of the image view before returning. If no success block is specified, the default behavior of setting the image with `self.image = image` is applied.
89
90  @param urlRequest The URL request used for the image request.
91  @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the image view will not change its image until the image request finishes.
633752 92  @param success A block to be executed when the image data task finishes successfully. This block has no return value and takes three arguments: the request sent from the client, the response received from the server, and the image created from the response data of request. If the image was returned from cache, the response parameter will be `nil`.
L 93  @param failure A block object to be executed when the image data task finishes unsuccessfully, or that finishes successfully. This block has no return value and takes three arguments: the request sent from the client, the response received from the server, and the error object describing the network or parsing error that occurred.
6e1425 94  */
H 95 - (void)setImageWithURLRequest:(NSURLRequest *)urlRequest
96               placeholderImage:(nullable UIImage *)placeholderImage
633752 97                        success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * _Nullable response, UIImage *image))success
L 98                        failure:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * _Nullable response, NSError *error))failure;
6e1425 99
H 100 /**
101  Cancels any executing image operation for the receiver, if one exists.
102  */
633752 103 - (void)cancelImageDownloadTask;
6e1425 104
H 105 @end
106
107 NS_ASSUME_NONNULL_END
108
109 #endif