how to increase font size in UIWebView

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

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

11条回答
  •  南笙
    南笙 (楼主)
    2020-11-30 18:34

    Here is mine for changing font size and color in UIWebView:

     NSString *myString=@"Hello World!";
     int textFontSize=2;
     NSString *myHTML=[NSString stringWithFormat: @"",myString,textFontSize];    
     [myWebView loadHTMLString:myHTML baseURL:nil];
    

提交回复
热议问题