how to increase font size in UIWebView

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

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

11条回答
  •  再見小時候
    2020-11-30 18:39

    Try the below code :

    NSString *setTextSizeRule = [NSString stringWithFormat:@"addCSSRule('body', '-webkit-text-size-adjust: %d%%;')",currentTextSize];
    [_webview stringByEvaluatingJavaScriptFromString:setTextSizeRule];
    

提交回复
热议问题