处理JSON数据并从字典中提取图像,将图像添加到数组
NSURL *imageurl=[NSURL URLWithString:(NSString *) Dictionry[@"product"][@"image_medium_url"]];
NSData *data = [NSData dataWithContentsOfURL:imageurl];
UIImage *image = [UIImage imageWithData:data];
[self.productImageArray addObject:image];
我正在将这个数组复制到另一个数组
for(int i=0;i<prodReq.productNameArray.count;i++)
{
[productimageA addObject:[[prodReq.productImageArray objectAtIndex:i] mutableCopy]];
}
将图像设置为imageview
UIImageView *productimage=[[UIImageView alloc]initWithFrame:CGRectMake(15, prodimgY, 60, 75 )];
productimage.image=[productimageA objectAtIndex:indexPath.row];
当我运行项目时出现此错误
-[UIImage mutableCopyWithZone:]: unrecognized selector sent to instance 0x14581240
可能出现什么问题?
答案 0 :(得分:4)
UIImage
个对象是不可变的,因此您无法在其上调用mutableCopy
。
答案 1 :(得分:3)
您正在将 UIImage 添加到 productImageArray 。您不需要为UIImage对象添加 mutableCopy 。所以只需使用
[productimageA addObject:[prodReq.productImageArray objectAtIndex:i] ];