views:

141

answers:

1

Is there a simple way to package a plist object (NSDictionary, NSArray, etc.) and Post it to a web service?

+1  A: 

Sure; you can easily convert a plist object into XML using +[NSPropertyListSerialization dataFromPropertyList:format:errorDescription:] and then send the XML to your web service.

Dave DeLong