如何获取 URL 的标题

发布于 2024-11-10 06:14:16 字数 253 浏览 2 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

薄荷港 2024-11-17 06:14:16

试试这个:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    NSString* title = [webView stringByEvaluatingJavaScriptFromString: @"document.title"];
    navbar.title = title;
}

取自:http://blog.mcohen.me/2008/12/12/getting-the-title-of-a-web-view-in-cocoa-touch/

Try this:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    NSString* title = [webView stringByEvaluatingJavaScriptFromString: @"document.title"];
    navbar.title = title;
}

Taken from: http://blog.mcohen.me/2008/12/12/getting-the-title-of-a-web-view-in-cocoa-touch/

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