I have searched a lot about how to replace a string sequence (eg @"replace") by another in a nsattributedstring, and I found nothing.

I would need a method like -replaceoccurrencesofthestring:withstring: but that can be uses with nsattributedstring.

Thanks

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
  1. Convert your attributed string into an instance of NSMutableAttributedString.

  2. The mutable attributed string has a mutableString method. According to the documentation:

    "The receiver tracks changes to this string and keeps its attribute mappings up to date."

    So you can use the resulting mutable string to execute the replacement with replaceOccurrencesOfString:withString:options:range:.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.