Reputation: 11
Is there a simple way to package a plist object (NSDictionary
, NSArray
, etc.) and Post it to a web service?
Upvotes: 1
Views: 480
Reputation: 243146
Sure; you can easily convert a plist object into XML using +[NSPropertyListSerialization dataFromPropertyList:format:errorDescription:]
and then send the XML to your web service.
Upvotes: 1