Re: I know I've done this before...
Re: I know I've done this before...
- Subject: Re: I know I've done this before...
- From: Greg Titus <email@hidden>
- Date: Mon, 11 Jun 2001 20:01:18 -0700
On Monday, June 11, 2001, at 04:51 PM, John C. Randolph wrote:
I know I've done this before, but I don't recall how to insert an
NSAttributedString into an NSTextView, preserving its formatting. Do I
have to stick it in the pasteboard first?
Nope. Here ya go:
[[myTextView textStorage] setAttributedString: myAttributedString];
--Greg