Skip to content

Commit

Permalink
Replaces SDWebImage#1016
Browse files Browse the repository at this point in the history
  • Loading branch information
bpoplauschi committed Mar 19, 2015
1 parent 72ed897 commit 7f99c01
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions SDWebImage/SDWebImageManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ typedef NSString *(^SDWebImageCacheKeyFilterBlock)(NSURL *url);
* @code
SDWebImageManager *manager = [SDWebImageManager sharedManager];
[manager downloadWithURL:imageURL
options:0
progress:nil
completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
if (image) {
// do something with image
}
}];
[manager downloadImageWithURL:imageURL
options:0
progress:nil
completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
if (image) {
// do something with image
}
}];
* @endcode
*/
Expand Down

0 comments on commit 7f99c01

Please sign in to comment.