Update docs to show correct arguments for SDInternalCompletionBlock

This commit is contained in:
Ben Govero 2020-01-23 17:53:14 -06:00
parent 443bf50b58
commit 25fe6e97f9
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ SDWebImageManager *manager = [SDWebImageManager sharedManager];
[manager loadImageWithURL:imageURL
options:0
progress:nil
completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
completed:^(UIImage *image, NSData *data, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {
if (image) {
// do something with image
}