Skip to content

Instantly share code, notes, and snippets.

@s4cha
Created November 11, 2015 15:51
Show Gist options
  • Save s4cha/f3646503bd83ba8ad07c to your computer and use it in GitHub Desktop.
Save s4cha/f3646503bd83ba8ad07c to your computer and use it in GitHub Desktop.
extension Profile:JSONParsable {
init(json: JSON) {
if let id:Int = json["id"] as? Int {
identifier = id
}
if let n:String = json["name"] as? String {
name = n
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment