hank
2017-06-22 a8ba2ef2cfbce91f4e510deab3e1bc645b40147f
commit | author | age
6e1425 1 // UIButton+AFNetworking.h
H 2 // Copyright (c) 2011–2015 Alamofire Software Foundation (http://alamofire.org/)
3 //
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
24 #import <Availability.h>
25
26 #if defined(__IPHONE_OS_VERSION_MIN_REQUIRED)
27
28 #import <UIKit/UIKit.h>
29
30 NS_ASSUME_NONNULL_BEGIN
31
32 @protocol AFURLResponseSerialization, AFImageCache;
33
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 ///----------------------------
42 /// @name Accessing Image Cache
43 ///----------------------------
44
45 /**
46  The image cache used to improve image loading performance on scroll views. By default, `UIButton` will use the `sharedImageCache` of `UIImageView`.
47  */
48 + (id <AFImageCache>)sharedImageCache;
49
50 /**
51  Set the cache used for image loading.
52
53  @param imageCache The image cache.
54  */
55 + (void)setSharedImageCache:(__nullable id <AFImageCache>)imageCache;
56
57 ///------------------------------------
58 /// @name Accessing Response Serializer
59 ///------------------------------------
60
61 /**
62  The response serializer used to create an image representation from the server response and response data. By default, this is an instance of `AFImageResponseSerializer`.
63
64  @discussion Subclasses of `AFImageResponseSerializer` could be used to perform post-processing, such as color correction, face detection, or other effects. See https://github.com/AFNetworking/AFCoreImageSerializer
65  */
66 @property (nonatomic, strong) id <AFURLResponseSerialization> imageResponseSerializer;
67
68 ///--------------------
69 /// @name Setting Image
70 ///--------------------
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  */
80 - (void)setImageForState:(UIControlState)state
81                  withURL:(NSURL *)url;
82
83 /**
84  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.
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  @param state The control state.
89  @param url The URL used for the image request.
90  @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.
91  */
92 - (void)setImageForState:(UIControlState)state
93                  withURL:(NSURL *)url
94         placeholderImage:(nullable UIImage *)placeholderImage;
95
96 /**
97  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.
98
99  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.
100
101  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.
102
103  @param state The control state.
104  @param urlRequest The URL request used for the image request.
105  @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.
106  @param success A block to be executed when the image request operation finishes successfully. This block has no return value and takes two arguments: the server response and the image. If the image was returned from cache, the response parameter will be `nil`.
107  @param failure A block object to be executed when the image request operation finishes unsuccessfully, or that finishes successfully. This block has no return value and takes a single argument: the error that occurred.
108  */
109 - (void)setImageForState:(UIControlState)state
110           withURLRequest:(NSURLRequest *)urlRequest
111         placeholderImage:(nullable UIImage *)placeholderImage
112                  success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success
113                  failure:(nullable void (^)(NSError *error))failure;
114
115
116 ///-------------------------------
117 /// @name Setting Background Image
118 ///-------------------------------
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 background image request for the receiver will be cancelled.
122
123  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.
124
125  @param state The control state.
126  @param url The URL used for the background image request.
127  */
128 - (void)setBackgroundImageForState:(UIControlState)state
129                            withURL:(NSURL *)url;
130
131 /**
132  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.
133
134  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.
135
136  @param state The control state.
137  @param url The URL used for the background image request.
138  @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.
139  */
140 - (void)setBackgroundImageForState:(UIControlState)state
141                            withURL:(NSURL *)url
142                   placeholderImage:(nullable UIImage *)placeholderImage;
143
144 /**
145  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.
146
147  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.
148
149  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.
150
151  @param state The control state.
152  @param urlRequest The URL request used for the image request.
153  @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.
154  @param success A block to be executed when the image request operation finishes successfully. This block has no return value and takes two arguments: the server response and the image. If the image was returned from cache, the response parameter will be `nil`.
155  @param failure A block object to be executed when the image request operation finishes unsuccessfully, or that finishes successfully. This block has no return value and takes a single argument: the error that occurred.
156  */
157 - (void)setBackgroundImageForState:(UIControlState)state
158                     withURLRequest:(NSURLRequest *)urlRequest
159                   placeholderImage:(nullable UIImage *)placeholderImage
160                            success:(nullable void (^)(NSURLRequest *request, NSHTTPURLResponse * __nullable response, UIImage *image))success
161                            failure:(nullable void (^)(NSError *error))failure;
162
163
164 ///------------------------------
165 /// @name Canceling Image Loading
166 ///------------------------------
167
168 /**
169  Cancels any executing image operation for the specified control state of the receiver, if one exists.
170
171  @param state The control state.
172  */
173 - (void)cancelImageRequestOperationForState:(UIControlState)state;
174
175 /**
176  Cancels any executing background image operation for the specified control state of the receiver, if one exists.
177
178  @param state The control state.
179  */
180 - (void)cancelBackgroundImageRequestOperationForState:(UIControlState)state;
181
182 @end
183
184 NS_ASSUME_NONNULL_END
185
186 #endif