I have a NSMutableAttributedString
that contain values in lower case letters. I need to convert all the lowercase letters to uppercase. We can solve this using uppercaseString
for normal string as:
[string uppercaseString];
How can I change my case for NSMutableAttributedString
? Thanks!