I am trying to use backendless so that the user does not depend on calbacks to be able to have the most current data, that is, not to store states but to keep the data updated. For this I am trying with data collections, which is a feature that I understand is included in the framework.
I have followed backendless data collection tutorial, and also I downloaded example project with it. I’m trying to use backendless data collection feature. That i want is to iterate over tables and retrieve data as appears in the tutorial.
This is tutorial: Backendless Data Collection Tutorial for iOS (Updated) | Backendless
This is code example: GitHub - olgadanylova/BackendlessDataCollectionSample: Sample project that demonstrates usage of the BackendlessDataCollection class binded to UITableView
To test the project you only need the following:
- Set api-key, app-id in AppDelegate file
- Run app and try to insert records
Expected Behavior
- The user creates a new record
- Data is storaged in backendless (Using data collection object)
- Data is retrieved to UI
Actual Behavior
- The user creates (apparently) a new record
- Data doesn’t store in backend (Person object is created, but Data collection doesn’t have records after insertion)
I put several breakpoints in class initializers, methods to insert or add records etc, inside the helper class of the data collection, but it doesn’t even stop at any point.
In case you have a suggestion regarding this solution, I am open to hearing it. What I need to achieve is an implementation that from the frontend does not depend on the objectids for updating and manipulation of the data.
Greetings!!