imgarray
是一个数组,其中所有的URL都在那里,我们必须解析图像并将它们插入到数组中。我使用下面的代码:
for (int i=0; i<[imgarr count]; i++){
imgurl=[imgarr objectAtIndex:i];
[[JMImageCache sharedCache] imageForURL:[NSURL URLWithString:imgurl] completionBlock:^(UIImage *downloadedImage){
UIImage *image=downloadedImage;
[_pageImages addObject:image];
}];
}