Probably really a rookie question here about xcode (for the iphone)..
When I issue this command;
NSString *externalData = [NSData dataWithContentsOfURL:[NSURL URLWithString: @"http://blah.com/userlist.txt"]];
I can see it's download from my webserver. How can I make this 1 line show in a label?
I tried; label.text = externalData; [externalData release];
But this doesn't seem to work..it seems to crash the app in the simulator. Any ideas?