Unable to set text in NSTextView

cocoa, desktop-application, interface-builder, nstextview, objective-c

Solution

Double check if the outlets are done in IB. That's probably the reason (textView is probably `nil` here).

Problem

::Edit:: It works now? haha, maybe I just didn't save my latest IB...who the hell knows. Thanks! Hey, This is my first time playing around with desktop applications (I have experience with iphone applications) and I'm stuck - My text view will not update to show any text: ``` .m: @synthesize textView; NSString *txt = [[[NSString alloc] initWithData:responseData encoding: NSASCIIStringEncoding] autorelease]; NSLog(@"txt = %@", txt); [textView setString:txt]; .h: IBOutlet NSTextView *textView; } @property(nonatomic, retain) IBOutlet NSTextView *textView; ``` And IB says textView -> Text View, so everything looks good: - NSLog above outputs the contents of the url resource Im fetching So, what am I missing?

Original source