iPhone,尝试将 plist (NSDictionary) 发布到 Web 服务
有没有一种简单的方法来打包 plist 对象(NSDictionary
、NSArray
等)并将其发布到 Web 服务?
Is there a simple way to package a plist object (NSDictionary
, NSArray
, etc.) and Post it to a web service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然;您可以使用
+[NSPropertyListSerialization dataFromPropertyList:format:errorDescription:]
然后将 XML 发送到您的 Web 服务。Sure; you can easily convert a plist object into XML using
+[NSPropertyListSerialization dataFromPropertyList:format:errorDescription:]
and then send the XML to your web service.