修改UIWebView控件中字體的樣式:
NSString *htmlString = [NSString stringWithContentsOfFile:self.webPath encoding:NSUTF8StringEncoding error:nil];UIFont *font = [UIFont systemFontOfSize:12];NSString *newHtmlString = [NSString stringWithFormat:@"<font face='%@' >%@", font.fontName,htmlString];[self.myWebView loadHTMLString:newHtmlString baseURL:[NSURL URLWithString:self.webPath]];
其中self.webPath 為本地網頁的路徑。
修改UIWebView控件中字體的大小:
NSString *str = @"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '60%'";[self.myWebView stringByEvaluatingJavaScriptFromString:str];
可以根據需要修改百分比。
以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持武林網!
新聞熱點
疑難解答