I have image path in a NSDictionary which is like( with key: image_path)
[productDictionary objectForKey:@”image_path”];
i am able to set the text on a label from Same dictionary
like
cell.lbl.text = [productDictionary objectForKey:@”somestatus”];
but have no idea,how to do the same for image (to set on an UIImageview).
how can i set it on UIImageview?
instead of this:
cell.imgvQuotes.image = [UIImage imageNamed:@”static.png”];
i want to set image from the dictionary instead of “static.png”
I have a URL of image after parsing,which is like
http://google.com/images/noimage.png //won’t work ,just an example
You can use: