I Have a NSTextView.
I just want to add an Attribute (an NSLinkAttributeName) to the selected Text in the NSTextView...
Can You Help me ?
Thanks.
|
I Have a NSTextView. I just want to add an Attribute (an NSLinkAttributeName) to the selected Text in the NSTextView... Can You Help me ? Thanks. |
|||
|
|
|
You want to get the view's textStorage (which is basically a mutable attributed string), then add the NSLinkAttributeName attribute to the selected range; the value of that attribute is the URL to link to. [[textView textStorage] addAttribute: NSLinkAttributeName value: url range:[textView selectedRange]]; |
|||
|
Been a while since I played with ObjC but this should do the trick. It replaces the selected text with the original content with your attr appended. Checked through it but please excuse any typos.
See class defs:
|
|||||
|