我有一个 uiwebview,我加载了以下 NSString 文本
NSString *htmltext=@"Likes: @Amore , @George , @Morfy ...";
然后我像这样将它加载到uiwebview中,以十六进制定义颜色
[wholikes loadData:[[NSString stringWithFormat:@"<html> <head><style>BODY { font-family: 'Times New Roman'; font-size: 14px; word-wrap: break-word}</style></head><body text=\"#645a49\">%@</body></html>", htmltext] dataUsingEncoding:NSUTF8StringEncoding]
MIMEType:@"text/html"
textEncodingName:@"UTF-8"
baseURL:nil];
有没有办法更改部分 uiwebview 文本?我希望“喜欢:”以另一种颜色呈现。
任何帮助表示赞赏。