iPhone数据同步
我是 iPhone 开发新手。我目前在 Windows Mobile 上有一个应用程序,它使用设备上的本地数据库 (sqlce),并且该应用程序能够使用 Microsoft 同步框架通过 Web 服务同步设备和远程数据库之间的数据。
这个要求在 iPhone 应用程序上可行吗?我想在 iPhone 上构建我的应用程序的版本。我看到iphone可以使用sqlite在设备上进行存储。
但是sdk有数据同步的东西吗?
I'm new to iphone development. I currently have an app on windows mobile that uses a local database on the device (sqlce) and the app is able to synchronize the data between the device and a remote database through a web service using microsoft sync framework.
Is this requirement feasible on an iphone app? Id like to build a version of my app on the iphone. I see that the iphone can use sqlite for storage on the device.
But does the sdk have something for data synchronization?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您必须使用 JSON 或 XML 通过 NSURLConnection 从远程服务器获取数据,并编写代码来同步 iPhone 上的 sqlite 数据库。有很多适用于 iPhone 的 JSON 框架,对于 XML 路由,您可以使用 NSXMLParser。
No, you have to use JSON or XML to get the data from your remote server via a NSURLConnection and write the code to synchronise the sqlite db on the iPhone. There are plenty of JSON frameworks for the iphone and for the XML route you can use NSXMLParser.