Shingoo
Shingoo

Reputation: 836

Creating XML data structure on iPhone

Is it correct, that there is no official API by Apple to create a well formed XML? I searched the web for a while but I just found some external frameworks to create XML data structures.

I need it for a web service call and would prefer a native API by Apple.

Of course I could just put together some Strings, but I think that's not the best way to do.

Upvotes: 0

Views: 254

Answers (1)

user23743
user23743

Reputation:

There's libxml2, which is supported API on the iPhone. Nothing higher-level, but there are plenty of third-party wrappers.

Upvotes: 1

Related Questions