I want to display image on UIImageView using URL and NSString. I am unable to show image.
UIImageView
NSString
My code is:
UIImageView *view_Im
Get image from following code
NSData *imageUrl = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"Your image URL Here"]];
Then set image using following code
[UIImage imageWithData:imageUrl];