在 iOS 设备之间交换结构数据的建议方法是什么?
以采购订单
为例。有采购订单标题
和一行或多行采购订单详细信息
:
+--- PO detail 1
|
PO header --+--- PO detail 2
|
...
|
+--- PO detail n
假设采购订单存储在核心数据数据库中。使用同一个应用程序在 iOS 设备之间交换一些 PO 记录的建议方法是什么?我正在考虑将记录打包为 json 格式、zip 并通过电子邮件发送给收件人。 Core Data 中是否有任何内置机制可以在一个设备中序列化数据并在另一设备中反序列化?谢谢!
Take Purchase Order
as an example. There is Purchase Order header
and one or more rows of Purchase Order details
:
+--- PO detail 1
|
PO header --+--- PO detail 2
|
...
|
+--- PO detail n
Assuem the POs are stored in a Core Data database. What's the suggested way to exchange some PO records among iOS devices, using the same app? I am thinking of packing the records in json format, zip and email to recipient(s). Is there any built-in mechanism in Core Data to serialize data in one device and de-serialize in another device? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有用于翻译数据的内置 API。我推荐并使用 JSON 作为传输格式。我编写了一个通用(粗略)递归解析器来回答 另一个StackOverflow 问题。
There is no built in API for translating the data. I recommend and use JSON as a transport format. I wrote a generic (and rough) recursive parser in answer to another StackOverflow question.