更改网站宽度以符合UIWebView

时间:2013-06-09 01:53:06

标签: ios objective-c cocoa-touch

我的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);
}

正如您所看到的,我有页面的高度和宽度,我不知道如何更改"缩放"

1 个答案:

答案 0 :(得分:1)

您可以设置contentSize UIWebView的{​​{1}}。像:

UIScrollView

希望这对你有用。