i m parsing a json feed .using async image download I m downloading images (around 18 images) and storing it in UIImage.how to get the count of the images so that i can iterate in a loop.below is the code
- (void)webImageManager:(SDWebImageManager *)imageManager didFinishWithImage:(UIImage *)image
{ UIImage *boom=image;
//download the image and storing it in UIImage
}
In your delegate callback you should be adding the processed element to an
NSMutableArray. Something like this:And: