Missing method definition in header file
Showing
1 changed file
with
2 additions
and
1 deletions
@@ -73,9 +73,10 @@ | @@ -73,9 +73,10 @@ | ||
73 | * and skips images for failed downloads and proceed to the next image in the list | 73 | * and skips images for failed downloads and proceed to the next image in the list |
74 | * | 74 | * |
75 | * @param urls list of URLs to prefetch | 75 | * @param urls list of URLs to prefetch |
76 | + * @param progressBlock block to be called when progress updates | ||
76 | * @param completionBlock block to be called when prefetching is completed | 77 | * @param completionBlock block to be called when prefetching is completed |
77 | */ | 78 | */ |
78 | -- (void)prefetchURLs:(NSArray *)urls completed:(void (^)(NSUInteger finishedCount, NSUInteger skippedCount))completionBlock; | 79 | +- (void)prefetchURLs:(NSArray *)urls progress:(void (^)(NSUInteger, NSUInteger))progressBlock completed:(void (^)(NSUInteger, NSUInteger))completionBlock; |
79 | 80 | ||
80 | /** | 81 | /** |
81 | * Remove and cancel queued list | 82 | * Remove and cancel queued list |
-
Please register or login to post a comment