获取错误[UIImage mutableCopyWithZone:]:发送到实例的无法识别的选择器

时间:2013-12-19 04:19:30

标签: ios objective-c uiimage

处理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

可能出现什么问题?

2 个答案:

答案 0 :(得分:4)

UIImage个对象是不可变的,因此您无法在其上调用mutableCopy

答案 1 :(得分:3)

您正在将 UIImage 添加到 productImageArray 。您不需要为UIImage对象添加 mutableCopy 。所以只需使用

[productimageA addObject:[prodReq.productImageArray objectAtIndex:i] ];