Last active
December 30, 2017 16:45
-
-
Save kmkrn/f21e5aebd908aadeca02c8db870e2b0c to your computer and use it in GitHub Desktop.
Deleting objects from realm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let realm = try! Realm() | |
try! realm.write { | |
realm.deleteAll() | |
} | |
let serializer = JSONSerializer() | |
serializer.serialize(input: "CatPeople") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment