获取网址 icon 有多种方法, 这里只提供一种比较简单可行的方法
网址的 icon 实际上就是网站的 favicon.ico
该图片一般存放在网站的根目录下
如何获取?
e.g. url = https://developer.apple.com/swift/
NSURL *url = [NSURL URLWithString:@"https://developer.apple.com/swift/"];
NSString *iconUrl = [NSString stringWithFormat:@"%@://%@/favicon.ico", url.scheme, url.host];
结果是: https://developer.apple.com/favicon.ico
获取到的 icon 没有固定尺寸, 16x16 32x32 64x64 我都遇到过