Tutorial for Parsing Images from Url in Iphone
Can anyone help me out with a simple Tutorial dem开发者_高级运维onstrating the Parsing of image from url in IPhone
NSURL *url = [NSURL URLWithString:@"http://your-url-to-image-goes-here"];
NSImage *image = [[NSImage alloc] initWithContentsOfURL:url];
精彩评论