如何在没有 UIWebView 的情况下获取 NSURl 链接的标题
是否可以在没有 UIWebView 的情况下获取 NSURL 链接的标题?谢谢。
Is it possible to get the title of a NSURL link without UIWebView ? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
stringWithContentsOfURL:encoding:error:
获取链接的内容并然后使用 NSXMLParser 解析它以获取标题。You can use
stringWithContentsOfURL:encoding:error:
to get the content of the link and then parse it usingNSXMLParser
to get the title.您可以加载 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.