Ich habe eine String-Variable tmpImgURLStr
die eine URL wie www.abc.com/img.png
. Ich möchte das Bild in meinem imageView anzeigen, für die ich einige Code verwenden, aber es ist nicht arbeiten, die unten angegeben ist:
NSLog(@"Img URL === %@",tmpImgURLStr);
NSData *mydata = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",tmpImgURLStr]]];
UIImage *myimage = [[UIImage alloc] initWithData:mydata];
[logoImg setImage:myimage];