gpt4 book ai didi

ios - 在 iOS 中获取特定网站 URL 的缩略图和标题?

转载 作者:可可西里 更新时间:2023-11-01 04:28:39 73 4
gpt4 key购买 nike

enter image description here

我必须显示缩略图并获取与 iOS 中的 LinkedIN 应用程序和 Skype 应用程序相同的 WEB URL 标题?

有什么解决办法吗?

最佳答案

这是查找 URL 的 favicon 图标的最简单方法

NSString *myURLString = @"http://www.google.com/s2/favicons?domain=www.facebook.com";
NSURL *myURL=[NSURL URLWithString: myURLString];
NSData *myData=[NSData dataWithContentsOfURL:myURL];

UIImage *myImage=[[UIImage alloc] initWithData:myData];

快速版本:

let myURLString = "http://www.google.com/s2/favicons?domain=www.facebook.com"
let myURL = NSURL(string: myURLString)!
let myData = NSData.dataWithContentsOfURL(myURL)
let myImage = UIImage(data: myData)!

希望这对你有帮助

更新

以下是 swift 库,可帮助您按需加载图像。

URLEmbeddedView

Here You can check actual work of library.

关于ios - 在 iOS 中获取特定网站 URL 的缩略图和标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36288889/

73 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com