Re: Appending NSStrings to an NSTextView
Re: Appending NSStrings to an NSTextView
- Subject: Re: Appending NSStrings to an NSTextView
- From: Richard Schreyer <email@hidden>
- Date: Mon, 31 Dec 2001 00:03:48 -0800
You can call [textView textStorage] to get the view's NSTextStorage
object. NSTextStorage is a subclass if NSMutableAttributedString, and
you can mangle the data however wish with the methods provided in it's
superclasses.
Richard Schreyer
On Sunday, December 30, 2001, at 11:15 PM, David Rehring wrote:
This doesn't feel like the one-true-way. What would a more appropriate
way
to append text be?