How can i get favicon image from its websire url using xcode....
Is there any special api for this?
Can anyone help me?..... Thanks in advance..
How can i get favicon image from its websire url using xcode....
Is there any special api for this?
Can anyone help me?..... Thanks in advance..
The favicon is just a file or number of files that live in the root of the website. The most common is favicon.ico but there may be favicon.png or others. So for website X just download http://x/favicon.ico
NSURL *url = [NSURL URLWithString:@"http://www.google.com/favicon.ico"];
NSData *data = [[NSData alloc]initWithContentsOfURL:url];
UIImage *image = [[UIImage alloc]initWithData:data];
Now image
contains the favicon.