【发布时间】:2011-09-02 12:19:49
【问题描述】:
我需要将背景图像添加到包含在我加载到 UIWebView 中的 HTML 代码中的电话号码
NSString *stringToReplace = [NSString stringWithFormat:@"<a style=\"color:white; background-color:#707070; text-decoration:none\" href=\"compose://%@\">%@</a>",substring,substring];
newString = [newString stringByReplacingOccurrencesOfString:substring withString:stringToReplace];
我已设法更改背景颜色,但我需要将图像作为背景。 主要目标是在电话号码后面制作带有圆角的浅灰色背景。
我找到了问题所在 solution
谢谢,
【问题讨论】:
标签: iphone html css ios uiwebview