我在网页视图中加载了一个HTML页面。但是双击网页视图时它不会缩放。我还将“scalesPageToFit”属性设置为“YES”,但我无法在Web视图中看到缩放效果。
CGRect webFrame = CGRectMake(0, 0, 320, 480);
webView = [[UIWebView alloc] initWithFrame:webFrame];
webView.backgroundColor = [UIColor clearColor];
webView.scalesPageToFit = YES;
webView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
webView.delegate = self;
webView.multipleTouchEnabled = YES;
[self.view addSubview:webView];
[self loadWebView];
答案 0 :(得分:1)
我有一个稀疏的html文档用于测试,并遇到了类似的问题。在我研究了其他iPhone Web Apps的内容之后,我发现UIWebView根据其中的内容放大了。它使用CSS和HTML来定义可缩放区域的框。那么你在展示什么?是否有任何内容保存该内容,以便WebView知道如何缩放?