Authored by Olivier Poitrey

Merge pull request #637 from runmad/master

Missing method definition in header file
@@ -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