I found a tutorial on the net that uses the stringWithContentsOfURL command that is now deprecated as of iPhone OS 3.0. However I can\'t find out what I\'m meant to use inst
Thanks Greg, but for all those other beginners here is an example
NSError* error = nil; NSString* text = [NSString stringWithContentsOfURL:TheUrl encoding:NSASCIIStringEncoding error:&error]; if( text ) { NSLog(@"Text=%@", text); } else { NSLog(@"Error = %@", error); }