fisher
fisher

Reputation: 1296

How to delete a class from realm file

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

Answers (1)

bdash
bdash

Reputation: 18308

To completely remove a class from your Realm file you'll want to do two things:

  1. Remove the class from your application.
  2. Have your migration block call Migration.deleteData(_:) to remove all references to the class from the Realm.

Upvotes: 8

Related Questions