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.
To completely remove a class from your Realm file you'll want to do two things:
- Remove the class from your application.
- Have your migration block call
Migration.deleteData(_:)to remove all references to the class from the Realm.
来源:https://stackoverflow.com/questions/36717796/how-to-delete-a-class-from-realm-file