iPhone 应用程序如何从互联网更新 SQLite 数据?
我认为 iphone 应用程序在某处有一个数据库,当用户更新应用程序中的数据时,它会联系服务器并从数据库获取 xml 并解析它?我说得对吗?我希望能够创建通过互联网传输数据的应用程序,但我不知道如何做。 xml 是正确的方法吗?如果是,那么我如何将保存到我的 PC 的 SQLite 转换为 xml 文件并将其发送到 iphone?
I think iphone apps have a database somewhere, and when a user updates data in application it contacts the server and gets an xml from the database and parses it? Am i right? I want to be able to create apps that tranfer data through the internet but i dont know how. Is xml the correct way to do it? If yes, then how can i convert a SQLite saved to my PC into a xml file and send it to iphone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XML 通常用于传输数据,并且许多基于 iOS 的应用程序确实使用 SQLite 进行数据存储。也就是说,传输或存储数据并不存在单一的“正确”格式——请采取最适合您情况的格式。
XML is often used for transferring data, and many iOS-based apps do use SQLite for data storage. That said, there's not a single "correct" format for transferring or storing data -- do what works best for your situation.