Skip to content

Instantly share code, notes, and snippets.

@nishabe
Created July 3, 2019 20:27
Show Gist options
  • Save nishabe/910cbba5c81cc2eead3ee8b02f5a7733 to your computer and use it in GitHub Desktop.
Save nishabe/910cbba5c81cc2eead3ee8b02f5a7733 to your computer and use it in GitHub Desktop.
Serialize an Object to JSON in swift
do {
let jsonData = try JSONEncoder().encode(myObjectHere)
let json = String(data: jsonData, encoding: .utf8)
print(json!)
}
catch {
print(error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment