如何获取 URL 的标题
我有一个 URL,我将在 ModalViewController 中显示该 URL。我想在导航栏中设置此 URL 的标题。
在 ModalViewController 内部,我有一个 UIWebView 来显示站点。有没有办法通过 UIWebView 提取该网站的标题?做了一些研究,似乎我想在 (void)webViewDidFinishLoad:(UIWebView *)webView
中使用一些 javascript 但不确定它是如何工作的。
I have a URL and I will show the URL inside a ModalViewController. I would like to set the title of this URL in the navigation bar.
Inside the ModalViewController I have a UIWebView to display the site. Is there a way to extract the title of this site via UIWebView? Did a bit of research and it seems that I would like to use some javascript inside the (void)webViewDidFinishLoad:(UIWebView *)webView
Not sure though how it works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
取自:http://blog.mcohen.me/2008/12/12/getting-the-title-of-a-web-view-in-cocoa-touch/
Try this:
Taken from: http://blog.mcohen.me/2008/12/12/getting-the-title-of-a-web-view-in-cocoa-touch/