But how do you keep it synced then with the cloud then?depends on the application. Core data is an object graph storage, so good for storing structured data but not so good for relational. If i just need to store info about say, Staff members I would consider Core Data. If the data is more complex, for example products, stock levels, transactions I would go with sqlLite.
Would you then just leave CoreData entirely out? Or implement it and sync it with Realm in the cloud?Realm DB is also popular.
indeed, using sqlLite directly would exclude if from iCloud sync's. When I have use sqlLite for enterprise clients I used custom API's to Rest Web Api's that integrated with back end systems. iCloud integration wasn't even in the picture.But how do you keep it synced then with the cloud then?
[doublepost=1559616599][/doublepost]
Would you then just leave CoreData entirely out? Or implement it and sync it with Realm in the cloud?