Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to write XML files?

I want to write a not so complicated but large file within my app and be able to send it by mail (using MFMailComposeViewController) Since NSXMLElement and related classes are not ported to iPhone SDK what options do I have for creating XML documents? Thanks in advance.

like image 347
nacho4d Avatar asked Oct 03 '10 09:10

nacho4d


1 Answers

I would recommend using KissXML. The author started in a similar situation as you and created an NSXML compatible API wrapper around libxml. He discusses the options and decisions here on his blog.

like image 95
codelark Avatar answered Nov 01 '22 15:11

codelark