UIWebView控件中字体大小和字体样式的修改
修改UIWebView控件中字体的样式:
NSString*htmlString=[NSStringstringWithContentsOfFile:self.webPathencoding:NSUTF8StringEncodingerror:nil]; UIFont*font=[UIFontsystemFontOfSize:12]; NSString*newHtmlString=[NSStringstringWithFormat:@"%@",font.fontName,htmlString]; [self.myWebViewloadHTMLString:newHtmlStringbaseURL:[NSURLURLWithString:self.webPath]];
其中self.webPath为本地网页的路径。
修改UIWebView控件中字体的大小:
NSString*str=@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust='60%'"; [self.myWebViewstringByEvaluatingJavaScriptFromString:str];
可以根据需要修改百分比。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持毛票票!