Get the XML content with AFNetworking

CoopThePirate

New Member
now i would like use AFNetworking library to get XML content, so I use this code \[code\]AFXMLRequestOperation *operation = [AFXMLRequestOperation XMLParserRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, NSXMLParser *XMLParser) { XMLParser.delegate = self; [XMLParser parse];} failure:nil];[operation start];\[/code\]my question is to know if there is any way to get the xml response ( i want to print the xml content with NSLog ) thank's in advance
 
Back
Top