在两个 iPhone 之间复制核心数据数据库
我正在用核心数据编写一个应用程序。我需要在运行同一应用程序的两部 iPhone 之间同步数据库,也许可以通过 bonjour... 有人可以帮忙吗?
谢谢你!
I'm coding an app with core data. I need to sync the database between two iphones running the same app maybe via bonjour...
Can anyone help?
Thankyou!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 cocoahttpserver 进行基本网络通信。现在,您可以
或
我本人认为想法一在大多数情况下都非常糟糕,但它也可能适合您的用例。
有了想法二,您将有更多的工作,但对每部手机上的数据表示有更多的控制。
实际上我们在我的公司正在使用想法二。但我不能在这里发布任何代码。
I would suggest using cocoahttpserver for the basic network communication. Now you can either
or
I myself would consider idea one being quite bad in most situations, also it might fit for your use-case.
With idea two you will have more work but more control about the data representation on each phone.
Actually we are using idea two in my company. But I can't post any code here.