我在 NSDictionary 中有图像路径,就像(带键:image_path)
[productDictionary objectForKey:@"image_path"];
我可以在同一字典的标签上设置文本,例如
cell.lbl.text = [productDictionary objectForKey:@"somestatus"];
但不知道如何对图像做同样的事情(在 UIImageview 上设置)。
如何在 UIImageview 上设置它?而不是这个:
cell.imgvQuotes.image = [UIImage imageNamed:@"static.png"];
我想从字典中设置图像而不是“static.png”
解析后我有一个图像的URL,就像
http://google.com/images/noimage.png //不会工作,只是一个例子