:: Edit :: Does it work now? haha maybe I just didn't save my last IB ... who the hell knows. Thank!
Hey,
This is my first time you play with desktop apps (I have experience with iphone apps) and I'm stuck. My text view will not be updated 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 displays the contents of the url resource Im fetching
So what am I missing?
mr-sk source
share