Skip to content

Instantly share code, notes, and snippets.

@alvaroroyo
Created February 28, 2019 09:27
Show Gist options
  • Save alvaroroyo/589881fd2f30afa03acd072ccbd12c93 to your computer and use it in GitHub Desktop.
Save alvaroroyo/589881fd2f30afa03acd072ccbd12c93 to your computer and use it in GitHub Desktop.
let url = Bundle.main.url(forResource: "persons", withExtension: "json")
let fileData = try! Data(contentsOf: url!)
let persons:[Person] = try! JSONDecoder().decode([Person].self, from: fileData)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment