I use NSXMLParser to analyze my data retrieved from my web service. But when I get data from the server.
He gives me error code 5.
I can not see the answer that comes from the web service.
I use
NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:theURL];
But I do not see the answer in the console when I write NSLog(@"%@",parser);
How can I display the response received from my web service?
source
share