Image Download
Is there better way to download Image from a Server to phone.I use NSURL but it crashes sometimes.
Here is the code i used:
UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.12312312.com/image.png"]]];
NSString *docDir3 = [NSSearchPathForDirectoriesInDomains(NSDocumentDire ctory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *pngFilePath3 = [NSString stringWithFormat:@"%@/Landing Image.png",docDir3];
NSData *data3 = [NSData dataWithData:UIImagePNGRepresentation(image)];
[data3 writeToFilengFilePath3 atomically:YES];
|