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

Fixes for "Suspicious Implicit Conversions" and "Hidden Local Variable" warnings

This allows the caller to pass in an NSDictionary specifying the mapping from namespace prefix to namespace URL. Namespace prefixes specified in the given XPath will then be resolved against...

The existing code uses doc->children, which is wrong in the case that the document has a doctype or PI nodes at the start. This fix is originally from upstream issue...

- Install error handlers before functions using them, so they're installed on the relevant thread. - Build error instance in error handler, rather than relying on pointer remaining valid. -...

I'm trying to configure KissXML to work with xmppFramework via the instructions on: https://github.com/robbiehanson/KissXML/wiki/GettingStarted I'm getting issues with the project not being able to find lxm2 lib. The images that...

Lets say I have a blank xml with elements, but now I need to add values to those elements for only specific elements. I know the element name. I can...

Currently you must modified the DDXML.h header to turn on the #define NS\* declarations. Instead of: `#if TARGET_OS_IPHONE && 0 // Disabled by default` Do: ``` #ifndef DDXML_NS_DECLARATIONS_ENABLED #define DDXML_NS_DECLARATIONS_ENABLED...

I have encountered an issue where XPath Queries will fail in KissXML when the XML contains processing instructions, but will work fine if the exact same XML does not contain...

In the ARC branch, DDXMLElement elementsForLocalName:URI, the second declaration of the prefix variable within the else block shadows the first declaration. Benign, but triggers a warning message when the 'Hidden...