在 UIWebView 中隐藏 header 和 google 组
Hide header with google groups inside UIWebView
我在我的 UIWebView window 中显示 google 组视图,但它显示 header 以及其他 google 服务的选项。有没有办法隐藏 header 而只显示 google 组内容?
这是我正在使用的 URL ...
https://groups.google.com/d/forum/MyAppGroupName
在
中使用 UIWebViewDelegate 方法 webViewDidFinishLoad 和 运行 这个 JS 脚本
- (void)webViewDidFinishLoad:(UIWebView *)webView {
NSString *script = [NSString stringWithFormat:@"document.getElementById(\"og_head\").style.display='none';"];
[webView stringByEvaluatingJavaScriptFromString:script];
}
我在我的 UIWebView window 中显示 google 组视图,但它显示 header 以及其他 google 服务的选项。有没有办法隐藏 header 而只显示 google 组内容?
这是我正在使用的 URL ...
https://groups.google.com/d/forum/MyAppGroupName
在
中使用 UIWebViewDelegate 方法 webViewDidFinishLoad 和 运行 这个 JS 脚本- (void)webViewDidFinishLoad:(UIWebView *)webView {
NSString *script = [NSString stringWithFormat:@"document.getElementById(\"og_head\").style.display='none';"];
[webView stringByEvaluatingJavaScriptFromString:script];
}