1.
_webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,40,1024, 728)];
_webView.delegate = self;
[self.view addSubview:_webView];
NSURL* url = [NSURL URLWithString:@"http://www.baidu.com"];
NSURLRequest* request = [[NSURLRequest alloc] initWithURL:url];
[_webView loadRequest:request];
-(void)change:(CGFloat)value
{
NSString* str1 =[NSString stringWithFormat:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '%f%%'",value];
[_webView stringByEvaluatingJavaScriptFromString:str1];
}
2.
强力推荐 [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; [self.webview stringByEvaluatingJavaScriptFromString:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '200%'"];非常好用!!!