如何设置WebView的字体样式?

时间:2012-06-01 06:43:22

标签: objective-c cocoa webview

我正在使用这行代码来设置文本的字体和大小。但这不起作用

NSString *abc=@"<html><body style=\"font-family:Verdana; font-size:12px; color:#000000;\"></body></html>";
    [msgWebView setCustomTextEncodingName:abc];

请告诉我如何在WebView中设置文本的字体样式。

1 个答案:

答案 0 :(得分:3)

我认为你正以错误的方式接近它。另一种方式是:

[[msgWebView preferences] setDefaultFontSize:12];
[[msgWebView preferences] setStandardFontFamily:@"Verdana"];