如何更改UIWebVIew iPhone的文本颜色

时间:2013-10-25 07:30:46

标签: ios webview

我正在使用webview来加载它加载数据的html字符串,但它不会改变文本颜色我也会改变颜色,但它不起作用。

   NSString *myDescriptionHTML = [NSString stringWithFormat:@"<html> \n"
                               "<head> \n"
                               "<style type=\"text/css\"> \n"
                               "body {font-family: \"%@\"; font-size: %@; text-colour:red}\n"
                               "</style> \n"
                               "</head> \n"
                               "<body>%@</body> \n"
                               "</html>", @"helvetica", [NSNumber numberWithInt:18],  texts];

它显示默认颜色而不是给定的新颜色

1 个答案:

答案 0 :(得分:3)

问题在于您的CSS代码,所以只需替换

 "body {font-family: \"%@\"; font-size: %@; text-colour:red}\n"

 "body {font-family: \"%@\"; font-size: %@; color:red}\n"

希望能够发挥作用