如何在没有 UIWebView 的情况下获取 NSURl 链接的标题

发布于 2024-11-17 07:56:23 字数 47 浏览 2 评论 0原文

是否可以在没有 UIWebView 的情况下获取 NSURL 链接的标题?谢谢。

Is it possible to get the title of a NSURL link without UIWebView ? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月如刀 2024-11-24 07:56:23

您可以使用 stringWithContentsOfURL:encoding:error: 获取链接的内容并然后使用 NSXMLParser 解析它以获取标题。

You can use stringWithContentsOfURL:encoding:error: to get the content of the link and then parse it using NSXMLParser to get the title.

青柠芒果 2024-11-24 07:56:23

您可以加载 URL 指向的内容并解析标题元素的 HTML,但这不会考虑由于 JavaScript 执行而导致的标题更改。所以答案是“不”,没有任何方法可以可靠获取给定 URL 处的页面标题。

You can load the content which the URL points to and parse the HTML for the title element, but that won't account for changes to the title as a result of javascript execution. So the answer is 'no', there isn't any way to reliably get the title of a page which is at a given URL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文