iPhone数据同步

发布于 2024-09-28 17:49:50 字数 230 浏览 7 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑梦风尘 2024-10-05 17:49:50

不,您必须使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文