欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

UIWebView控件中字體大小和字體樣式的修改

 更新時(shí)間:2017年03月09日 15:15:28   作者:慢慢兒  
本文主要介紹了UIWebView控件中字體大小和字體樣式的修改,具有很好的參考價(jià)值。下面跟著小編一起來看下吧

修改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 為本地網(wǎng)頁的路徑。

修改UIWebView控件中字體的大?。?/strong>

NSString *str = @"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '60%'";
[self.myWebView stringByEvaluatingJavaScriptFromString:str];

可以根據(jù)需要修改百分比。

以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持腳本之家!

相關(guān)文章

最新評論