如何使用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 在设备中存储数据。我们如何进行?我对所有建议持开放态度。 提前谢谢。