KissXML icon indicating copy to clipboard operation
KissXML copied to clipboard

A replacement for Cocoa's NSXML cluster of classes. Based on libxml. Works on iOS.

Results 61 KissXML issues
Sort by recently updated
recently updated
newest added

Pushing minor fixes from fork to upstream.

``` DDXMLElement *root = [document rootElement]; DDXMLNode *defaultNameSpace = [root namespaceForPrefix:@""]; defaultNameSpace.name = @"default"; int index = 1; NSError *error; NSArray *spineNodes = [root nodesForXPath:@"//default:ncx/default:navMap" error:&error]; ``` why?

I am trying to add xmpp framework in my ios app.After adding it's showing > libxml/tree.h file not found after some googling I found that need to add libxml2.dylib in...

Hi. This adds two method. I wrote this method along with Swift 3. 1. isDescendant method This method returns if given node is descendant of self. 2. isAncestor method This...

Hi there, I'm using KissXML in my project, which has a very rigid structure and schema. I want to be able to automate testing against the schema, so I know...

this cause issue with xcodebuild

# Manual Installation Instructions It would be nice to include some manual installation instructions, as it would appear to not be as straight forward as you might initially think (especially...

This should be noted in the documentation or code comments. KissXML "isEqual:" compares class and then object pointer only for the underlying libxml node. Apple's "isEqual:" says: "By default NSXMLNode...

Hi everybody, i'm trying to create a DDXMLElement which contains an nsarray of NSInteger, my code is: ``` DDXMLElement *type = [DDXMLElement elementWithName:@"type" stringValue:@"news_user_update_categories_subscriptions"]; DDXMLElement *channelId = [DDXMLElement elementWithName:@"news_channel_id" numberValue:...