我的Web View每隔一段时间就会遇到一个放大太远的网站,我不在乎垂直滚动,但水平滚动可能非常烦人。到目前为止我的代码:
-(void)zoomToFit
{
webView.scalesPageToFit = YES;
NSInteger height = [[webView stringByEvaluatingJavaScriptFromString:
@"document.body.scrollHeight"] integerValue];
NSInteger width = [[webView stringByEvaluatingJavaScriptFromString:
@"document.body.scrollWidth"] integerValue];
NSLog(@"%d %d",height,width);
}
正如您所看到的,我有页面的高度和宽度,我不知道如何更改"缩放"
答案 0 :(得分:1)
您可以设置contentSize
UIWebView
的{{1}}。像:
UIScrollView
希望这对你有用。