What font does UIWebView and WKWebView use by default? I would like to be able to change that. But I don\'t want to do it in the html string, inste
UIWebView
WKWebView
Just prefix a tag to your string before loading into the webView.
NSString *body = [plist objectForKey:@"foo"]; NSString *htmlString = [NSString stringWithFormat:@"%@", body]; [webView loadHTMLString:htmlString baseURL:nil];