Last active
May 9, 2018 22:09
-
-
Save IgorMuzyka/c9e151e6e2dd5f37653bdd85a29ba39a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 dave = Person(id: "0", name: "Dave", age: 25) | |
let file = try! dave.persist(to: .userDocuments) // save dave to user documents | |
let sameOldDave = try! file.restore() // load dave | |
let andAgainDave = try! Person.restore(from: file.path) // load dave from path |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment