My question I think is very simple but I couldn't find anything with Google.
I am using NSMutableAttributedString
to modify styles in a string and for example I use this code to change the background color:
[string addAttribute:NSBackgroundColorAttributeName value:[UIColor colorWithRed:0.4 green:0.8 blue:1 alpha:1] range:NSMakeRange(0,18)];
And my question is, how I can round the corners of this background?
Thanks in advance.