Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 2 down vote accepted

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]];

share|improve this answer
Thanks, works fine ;-) – Le roukin May 25 '11 at 8:06
Another small Question: How can I remove (and recover) this link... – Le roukin Jun 1 '11 at 8:54
I find by myself ;-) – Le roukin Jun 1 '11 at 12:09
[[[textView textStorage] attributedSubstringFromRange:[textView selectedRange]] attribute:NSLinkAttributeName atIndex:0 effectiveRange:NULL]; – Le roukin Jun 1 '11 at 12:09
[[textView textStorage] removeAttribute:NSLinkAttributeName range:[textView selectedRange]]; – Le roukin Jun 1 '11 at 12:09

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.

NSTextView *textView = ...;
NSDictionary *attributes = ...;

//Get selected text string from TextView (see Text superclass) and append attr link
NSRange selRange = [textView selectedRange];
NSMutableString *changedStr = [[[textView string] substringWithRange:selRange] mutableCopy];
[changedStr appendString:[attributes objectForKey:NSLinkAttributeName]];

//Replace the selected text range in the TextView
[textView replaceCharactersInRange:selRange withString:[NSString stringWithString:changedStr]];

[changedStr release];

See class defs:

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSText_Class/Reference/Reference.html

  • -replaceCharactersInRange:withString:
  • -selectedRange
  • -scrollRangeToVisible: if you want to present your change immediately

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html

  • substringWithRange:
share|improve this answer
Nope; that's going to append a URL to the visible text, which is not what the OP asked for. – Jens Alfke May 24 '11 at 18:52
Oh, ok. apologies Le roukin. Misunderstood the question. – wmorrison365 May 25 '11 at 16:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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