Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 iPhone 应用程序中,从在线数据库中检索数据的最佳方法是什么?(SQLite 或 mysql)
我想要实现的是在我的应用程序中读取和写入在线数据。
此外,开发人员如何从服务器端资源(xml、json、数据库表等)检索信息到他们的应用程序?
使用 REST 接口与在线服务进行交互。查看 RestKit 以将 REST 添加到您的 iOS 应用程序。
不要从您的 iOS 应用程序访问数据库,我不鼓励这样做,始终在其上创建一个 RESTful 层,它更安全,并且您可以通过许多其他方式从 RESTful 层中受益。