我需要将背景图片添加到包含在我加载到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];
我设法改变了背景颜色,但我需要将图像作为背景。 主要目标是在电话号码后面制作带圆角的lightGray背景。
我发现了什么问题 solution
谢谢,
答案 0 :(得分:0)
我真的不了解你的代码,也许你应该使用css background images:
background: #afdafd url('path...');
/*def.color. back.img.*/
<a style=\"color:white; background:#707070 url('/images/rounded-corner.png'); text-decoration:none\" href=\"compose://%@\">%@</a>