0

i'm having a array of web urls redirecting images. Is it possible to download images directly and save it using its default file name.

user23790
  • 563
  • 3
  • 21

1 Answers1

0
NSData *data=[NSData dataWithContentsOfURL:[NSURL URLWithString:webImageURL]];
[data writeToURL:localURL atomically:YES];
Parag Bafna
  • 22,812
  • 8
  • 71
  • 144