例如,有没有办法在 UIWebView 中缩放网页,保持纵横比,但减少水平滚动阅读文章的需要。垂直滚动很好,我只是不希望用户必须不断地在水平方向来回滚动来阅读文章的每一行。谢谢!
编辑:我用来创建视图的代码
_webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, [[self view] frame].size.width, [[self view] frame].size.height)];
[_webView setAutoresizingMask:UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth];
[_webView setDelegate:self];
[_webView setScalesPageToFit:YES];
[_webView loadRequest:[NSURLRequest requestWithURL:[headline link]]];
该链接始终已针对移动设备进行了格式化。