Skip to content

Commit fcd96d3

Browse files
committed
Update UIButton+AFNetworking.m
Added call to sharedImageCache to cache the responseObject. Previously the method would be checking for a cached value, but would often not find a previous image because it was not being cached in this method.
1 parent 9ed3e54 commit fcd96d3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

UIKit+AFNetworking/UIButton+AFNetworking.m

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ - (void)setImageForState:(UIControlState)state
167167
[strongSelf setImage:responseObject forState:state];
168168
}
169169
}
170+
[[[strongSelf class] sharedImageCache] cacheImage:responseObject forRequest:urlRequest];
170171
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
171172
if ([[urlRequest URL] isEqual:[operation.response URL]]) {
172173
if (failure) {

0 commit comments

Comments
 (0)