Reputation: 1296
My default Realm has several classes. I want to completely remove all references and delete all data for one of the classes. How can I do this? When I remove the class from my application, the class is still listed when I open the file in Realm Browser.
Upvotes: 3
Views: 4180
Reputation: 18308
To completely remove a class from your Realm file you'll want to do two things:
Migration.deleteData(_:)
to remove all references to the class from the Realm.Upvotes: 8