我正在使用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];
它显示默认颜色而不是给定的新颜色
答案 0 :(得分:3)
问题在于您的CSS代码,所以只需替换
"body {font-family: \"%@\"; font-size: %@; text-colour:red}\n"
与
"body {font-family: \"%@\"; font-size: %@; color:red}\n"
希望能够发挥作用