I\'m using a class written by a blogger (http://troybrant.net/blog/) that takes an XML string and spits out a NSDictionary.
my app is crashed as it execute [NSXMLParser parse]; statement,and i am getting following : 2011-03-01 09:36:31.735 MasterApp[228:207] -[NSCFString bytes]: unrecognized selector sent to instance 0x5f
I am using sendSynchronousRequest and receiving data from a web server but the app is crashing while I am trying to parse the received data?
I have a books app with a UISearchBar, where the user types any book name and gets search results (from ext API call) below as he types.
Update: While the Leaks instrument points to the first call to [parser parse];, I have identified that the leak only occurs when I make this call a second time.I don\'t see anything in the NSXMLParser
I am quite new to iphone development. I was going through tutorials on XML parsing for which NSXMLParser is used. Are there other parsers we can use for parsing XML. How d开发者_如何学Co we decide whi
I am getting the data from .net web server like this. <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
Hello all in my iphone application after sending login xml request am getting following faulted xml... but i cant understand what the error is...
I wanted to know what is more efficient for what I am doing: I\'m bringing in (very small - 4kb or less each) .xml files which contain GPS coordinates of a vehicle. I am then parsing them (very light
I have a problem with an app that takes an XML feed, parses it, and stores the results into Core Data.