XMLReader icon indicating copy to clipboard operation
XMLReader copied to clipboard

Objective-C XML reader based on NSXMLParser

Results 11 XMLReader issues
Sort by recently updated
recently updated
newest added

``` TEST TEST1 TEST2 ``` ``` (lldb) po result { vcread = { "bg_img" = { height = 480; id = 32; seq = 0; src = "333_07.jpg"; tag =...

Is it possible to create key-value pair? Rather then adding a node key "text". Thanks in advance.

Hi Can you please confirm that original owner of this code Mr. Troy has given you distribution permission free of cost as license file is not mentioning about the same....

Hi, Please add the license declaration to the top of each file. Thanks, Brian

First of all thanks for creating this great parser that helped me a lot. Now i know that CData means you have to ignore while parsing, but in case i...

I have an XML document, in the following format: ``` xml ``` Your code: ``` objectivec - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName { // Update the parent...

I have an object c code connecting to a web server returning an xml. after, I put the result into an NSDictionary: self.xmlDictionary = [XMLReader dictionaryForXMLString:self.theXML options:XMLReaderOptionsProcessNamespaces error:&parseError]; NSLog(@"%@", self.xmlDictionary);...

Also, if the error pointer in `nil`, don't try to return an error; otherwise, the library crashes. Partially related to https://github.com/amarcadet/XMLReader/issues/12.