1滞诺、UIWebView設(shè)置字體大小茵烈,顏色百匆,字體:1、UIWebView設(shè)置字體大小呜投,顏色加匈,字體:
UIWebView無法通過自身的屬性設(shè)置字體的一些屬性,只能通過html代碼進(jìn)行設(shè)置仑荐,代碼如下:UIWebView無法通過自身的屬性設(shè)置字體的一些屬性雕拼,只能通過html代碼進(jìn)行設(shè)置,代碼如下:
在webView加載完畢后释漆,在
- (void)webViewDidFinishLoad:(UIWebView *)webView方法中加入js代碼
NSString *str = @"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '60%'";
[_webView stringByEvaluatingJavaScriptFromString:str];
或加入
NSString *jsString = [[NSString alloc] initWithFormat:@"document.body.style.fontSize=%f;document.body.style.color=%@",fontSize,fontColor];
[webView stringByEvaluatingJavaScriptFromString:jsString];