Question

I have a placeholder string, a space character, in an NSTextView that I want to remove at a future time. My strategy is to assign the NSAttributedString a custom attribute and perform a search on the [NSTextView string] removing it. So far, I haven't found a good way to do this, outside of going through [NSTextStorage attributeRuns]. Anyone have a good idea for this?

Thanks!

Was it helpful?

Solution

Apple's AttributedString Programming Guide has examples showing how to loop through an attributed string using attribute:atIndex:effectiveRange: and companion methods. There's an enumerator block, too, for 10.6.

OTHER TIPS

Check out this example implementation that I wrote of custom NSAttributedString attribute: http://aimannajjar.com/blog/1-How-to-Create-NSTextView-with-Facebook-like-Tags-Mentions.html.

Basically, I loop though all attributes using - enumerateAttributesInRange:options:usingBlock: and then I have a custom drawing logic that only runs when the attribute is "Tag".

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top