How to completely remove Realm database from iOS?

前端 未结 7 1414
情书的邮戳
情书的邮戳 2020-12-15 08:32

Now I get error Property types for \'value\' property do not match. Old type \'float\', new type \'double\' How to clear database or migrate is successfully?

7条回答
  •  無奈伤痛
    2020-12-15 09:10

    Have you tried

       let realm = try! Realm()
       realm.deleteAllObjects() 
    

    You could also try deleting the realm off the device by plugging it into the computer, going to Xcode and then Devices, and then finding the current realm there and deleting it.

提交回复
热议问题