这里我想将图片网址显示到图片视图
NSData *imageData= [[[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:[sharedDelegate.getHotListArray objectAtIndex:indexPath.row]]]objectForKey:@"image"];
cell.userGetHotImgView.image=[UIImage imageWithData:imageData];
这里我得到的字典长度错误? 请帮助我如何将图像URL数组传递给nsdata?
提前谢谢你。
答案 0 :(得分:0)
在您发布的代码中,您正在创建一个NSData对象,然后在其上调用objectForKey:
。这不是NSData的方法。
只需将您创建的NSData分配给imageData变量。