NSData * myData; // RTF data
NSAttributedString * myString = [[NSAttributedString alloc] initWithRTFD: myData documentAttributes: NULL];
[[yourTextView textStorage] setAttributedString: myString];
thyrgle is close, but NSAttributedString needs to be initialized with
initWithRTFD: documentAttributes:
instead
initWithRTF: documentAttributes:
source share