Get image from website url iphone faster
- by dragon
Hi i want to get image faster from website in iphone..
Now i get image from website url using this function
NSData *data;
UIImage *Favimage;
data = [NSData dataWithContentsOfURL:[NSURL URLWithString:WebsiteUrl]];
Favimage = [[UIImage alloc]initWithData:data];
But it takes some time to get image from website url. Now i want get faster image means ?
What can i do ? Is there any api in apple iphone sdk?
Can any one help me ?
Thanks in advance.....