如何在图像中存储多个图像URL

时间:2014-05-06 07:32:33

标签: xcode5

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];                
    }];
}

0 个答案:

没有答案