獲取網(wǎng)址 icon?有多種方法, 這里只提供一種比較簡單可行的方法
網(wǎng)址的 icon 實際上就是網(wǎng)站的 favicon.ico
該圖片一般存放在網(wǎng)站的根目錄下
如何獲取?
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 我都遇到過