Ask HN: Is there an easy way to work with web services for iPhone dev?
We want to take XML data and convert it to an NSDictionary object, but we don't want to manually iterate over the XML. Is there an easy way to do this? How are you doing web services for your iPhone app?
7 comments
[ 3.9 ms ] story [ 23.1 ms ] threadIf this is a coding question, look for the XML parser in the Core Foundation framework (I believe there are also examples for it): http://developer.apple.com/documentation/CoreFoundation/Conc...
If you are asking specifically about Xcode (the IDE), I know it parses XML because it syntax-colors XML files that I open, and its code-folding brackets support hierarchies of open/close tags.