How can I set an NSTextView to an NSAttributedString? I do not want to use a textConainer, and I tried:

[myTextView insertText:myMutableAttributedString];

but it didn't work. Nothing happened...not even a warning or a runtime error. Any help would be appreciated.

link|improve this question
Have you verified that myTextField is not nil? – Dave DeLong Mar 14 '11 at 0:01
Yes, I Have verified myTextView is not nil. – user657819 Mar 15 '11 at 0:28
feedback

1 Answer

You should call -setString with an empty string before calling that method (otherwise you're inserting text into a null string object):

[myTextView setString:@""];
[myTextView insertText:myMutableAttributedString];
link|improve this answer
It didn't Work. Not even anything reporting a problem in the console. – user657819 Mar 16 '11 at 0:36
feedback

Your Answer

 
or
required, but never shown

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