如何使用 smartStore 框架为 iOS 应用程序开发离线功能?
到目前为止,在我们的应用程序中,我们已经使用SFRestApi和委托方法,使用直接查询到 salesforce 实现了所有模块,例如
// Send a request factory message to the singleton SFRestAPI instance
let request = SFRestAPI.sharedInstance.requestForQuery("SELECT Name FROM User LIMIT 10")
SFRestAPI.sharedInstance.send(request,delegate:self)
现在我们想使用smartStore将数据存储在设备中。我们如何进行?我愿意接受所有建议。提前致谢。