Is it possible to save an array of objects to Realm? Anytime I make a change to the array it should be saved to Realm.
Realm
My current solution is to save ob
To save lists of objects you have to use a Realm List, not a Swift Array.
List
let objects = List()
Then, you can add elements:
objects.append(object1)
Take a look at to many relationships and Collections sections of the official docs.