how to increase font size in UIWebView

前端 未结 11 1041
广开言路
广开言路 2020-11-30 18:12

how to increase or decrease the UIWebview font size, not using scalePageToFit:NO;

11条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-30 18:41

    There is currently no exposed way to directly manipulate the DOM in a UIWebView, nor any convenience methods for handling things like font sizes. I suggest filing Radars.

    Having said that. you can modify the font size by changing the CSS, like any other webpage. If that is not possible (you don't control the content) you can write a small javascript function to change the CSS properties in the pages DOM, and execute it by calling:

    - (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script;
    

提交回复
热议问题