Hi
I have been following this example and refactoring to put in my own app.
My app is referencing BackendlessSwift and this article was referencing Backdendless in the pod, which I think is why my project is showing this error: cannot find IDataStore in scope at the following declarations?
private var messageStore: IDataStore!
private var messageStoreMap: IDataStore!
If that is the case how do I solve, what is the equivalent is using BackendlessSwift as the SDK and also what would would be equivalent where these are used later…
messageStore = Backendless.sharedInstance()?.data.of(MessageObject.self)
messageStoreMap = Backendless.sharedInstance()?.data.ofTable(“MessageObject”)
Many thanks
Mike