I'm new to Objective C and I am using a helper that returns an XML payload from a web service as an NSXMLParser. I need to get that payload as either an NSString of XML or as an NSData object so that I can use it in another library that converts the payload to an NSDictionary.
Is there an easy way to convert this XML to a string? From the docs, I see that I could write my own string builder using the events of NSXMLParser but this feels like re-inventing the wheel compared to working with XML in other languages.