views:

86

answers:

1

I am developing an iPhone app that requires XML parsing. Can I use the LibXML framework in my app? Will Apple approve my app if I use this framework?

+2  A: 

Yes you can: Data Management Coding How-To's

You can also use the libxml C library, which provides an extensive and well-documented API that supports reading, mutating, and serializing XML documents.

Chris Gummer