如何更改WKWebView
的字体大小,而不管iOS编程中的webkit内容是什么?
我正在使用[Webview stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"resizeText(%lu)",(unsigned long)fontSize]];
但它不会对Web视图字体大小进行任何更改。
答案 0 :(得分:0)
我建议您在内容中添加CSS
代码。
我必须这样做一次,这是我的代码中的一个例子:
NSString *systemFont = [[[UIFont systemFontOfSize:11.f] description] fontCSS];
NSString *boldFont = [[[UIFont boldSystemFontOfSize:12.f] description] fontCSS];
// The above fonts can be changed to your liking.
NSString *oldContent = ___; // This is the html content that was loaded.
NSString *content = [NSString stringWithFormat:@"<html><head>\
<style>\
img,iframe{max-width:100%%; width:auto; height:auto; display:block; margin-left:auto; margin-right:auto; margin-bottom:20px}\
body{%@; margin-left:24px; margin-right:24px; margin-bottom:24px}\
strong{%@}\
</style>\
</head><body>%@</body></html>", systemFont, boldFont, oldContent];
现在,您将content
变量与webview
一起使用。
fontCSS
方法如下,它位于NSString类别中:
-(NSString *)fontCSS
{
NSRange range = [self rangeOfString:@"font-family"];
return [self substringFromIndex:range.location];
}