我正在使用 webview 来显示 google maps + jqmobile。Webview 可以在横向和纵向上正确调整大小,但是,它的内容不能完全适合纵向而不是横向。我发现了一些将其报告为错误的信息,但我无法解决它。谢谢你。
从 jquery mobile .html 我尝试了以下配置,
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0;" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0;" />
来自 xcode .m 文件,
webView1.scalesPageToFit = YES;
NSURLRequest *req = [[NSURLRequest alloc] initWithURL: [NSURL URLWithString:[urlBase stringByAppendingString:@".html"]] cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData timeoutInterval:10];
[webView1 loadRequest:req];