Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IgorMuzyka/c9e151e6e2dd5f37653bdd85a29ba39a to your computer and use it in GitHub Desktop.
Save IgorMuzyka/c9e151e6e2dd5f37653bdd85a29ba39a to your computer and use it in GitHub Desktop.
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