LPW
2022-01-05 0b97cfb3490c70664ec62cd5f9e5f01abd912270
commit | author | age
6e1425 1 // UIButton+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 `UIButton` class. The methods in this category provide support for loading remote images and background images asynchronously from a URL.
36
37  @warning Compound values for control `state` (such as `UIControlStateHighlighted | UIControlStateDisabled`) are unsupported.
38  */
39 @interface UIButton (AFNetworking)
40
41 ///------------------------------------
633752 42 /// @name Accessing the Image Downloader
6e1425 43 ///------------------------------------
H 44
45 /**
633752 46  Set the shared image downloader used to download images.
6e1425 47
633752 48  @param imageDownloader The shared image downloader used to download images.
L 49 */
50 + (void)setSharedImageDownloader:(AFImageDownloader *)imageDownloader;
51
52 /**
53  The shared image downloader used to download images.
6e1425 54  */
633752 55 + (AFImageDownloader *)sharedImageDownloader;
6e1425 56
H 57 ///--------------------
58 /// @name Setting Image
59 ///--------------------
60
61 /**
62  Asynchronously downloads an image from the specified URL, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled.
63
64   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.
65
66  @param state The control state.
67  @param url The URL used for the image request.
68  */
69 - (void)setImageForState:(UIControlState)state
70                  withURL:(NSURL *)url;
71
72 /**
73  Asynchronously downloads an image from the specified URL, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled.
74
75  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.
76
77  @param state The control state.
78  @param url The URL used for the image request.
79  @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the button will not change its image until the image request finishes.
80  */
81 - (void)setImageForState:(UIControlState)state
82                  withURL:(NSURL *)url
83         placeholderImage:(nullable UIImage *)placeholderImage;
84
85 /**
86  Asynchronously downloads an image from the specified URL request, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled.
87
88  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.
89
90  If a success block is specified, it is the responsibility of the block to set the image of the button before returning. If no success block is specified, the default behavior of setting the image with `setImage:forState:` is applied.
91
92  @param state The control state.
93  @param urlRequest The URL request used for the image request.
94  @param placeholderImage The image to be set initially, until the image request finishes. If `nil`, the button will not change its image until the image request finishes.
633752 95  @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 96  @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 97  */
H 98 - (void)setImageForState:(UIControlState)state
99           withURLRequest:(NSURLRequest *)urlRequest
100         placeholderImage:(nullable UIImage *)placeholderImage
633752 101                  success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * _Nullable response, UIImage *image))success
L 102                  failure:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * _Nullable response, NSError *error))failure;
6e1425 103
H 104
105 ///-------------------------------
106 /// @name Setting Background Image
107 ///-------------------------------
108
109 /**
110  Asynchronously downloads an image from the specified URL, and sets it as the background image for the specified state once the request is finished. Any previous background image request for the receiver will be cancelled.
111
112  If the background image is cached locally, the background image is set immediately, otherwise the specified placeholder background image will be set immediately, and then the remote background image will be set once the request is finished.
113
114  @param state The control state.
115  @param url The URL used for the background image request.
116  */
117 - (void)setBackgroundImageForState:(UIControlState)state
118                            withURL:(NSURL *)url;
119
120 /**
121  Asynchronously downloads an image from the specified URL, and sets it as the background image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled.
122
123  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.
124
125  @param state The control state.
126  @param url The URL used for the background image request.
127  @param placeholderImage The background image to be set initially, until the background image request finishes. If `nil`, the button will not change its background image until the background image request finishes.
128  */
129 - (void)setBackgroundImageForState:(UIControlState)state
130                            withURL:(NSURL *)url
131                   placeholderImage:(nullable UIImage *)placeholderImage;
132
133 /**
134  Asynchronously downloads an image from the specified URL request, and sets it as the image for the specified state once the request is finished. Any previous image request for the receiver will be cancelled.
135
136  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.
137
138  If a success block is specified, it is the responsibility of the block to set the image of the button before returning. If no success block is specified, the default behavior of setting the image with `setBackgroundImage:forState:` is applied.
139
140  @param state The control state.
141  @param urlRequest The URL request used for the image request.
142  @param placeholderImage The background image to be set initially, until the background image request finishes. If `nil`, the button will not change its background image until the background image request finishes.
633752 143  @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 144  @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 145  */
H 146 - (void)setBackgroundImageForState:(UIControlState)state
147                     withURLRequest:(NSURLRequest *)urlRequest
148                   placeholderImage:(nullable UIImage *)placeholderImage
633752 149                            success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * _Nullable response, UIImage *image))success
L 150                            failure:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * _Nullable response, NSError *error))failure;
6e1425 151
H 152
153 ///------------------------------
154 /// @name Canceling Image Loading
155 ///------------------------------
156
157 /**
633752 158  Cancels any executing image task for the specified control state of the receiver, if one exists.
6e1425 159
H 160  @param state The control state.
161  */
633752 162 - (void)cancelImageDownloadTaskForState:(UIControlState)state;
6e1425 163
H 164 /**
633752 165  Cancels any executing background image task for the specified control state of the receiver, if one exists.
6e1425 166
H 167  @param state The control state.
168  */
633752 169 - (void)cancelBackgroundImageDownloadTaskForState:(UIControlState)state;
6e1425 170
H 171 @end
172
173 NS_ASSUME_NONNULL_END
174
175 #endif