This is a bit basic; I am trying to retrieve http data for an iPhone app.
I have www.myhost.com/test.html that reads
<array><string>test</string><string>test2</string></array>
Then I have
NSURL *baseURL = [NSURLRLWithString:@"http://www.myhost.com/test.html"];
NSArray *array = [NSArray arrayWithContentsOfURL:baseURL];
NSLog(@"%@", [array description]);
Which keeps returning (null). What am I missing? Thanks!