Skip to content

Instantly share code, notes, and snippets.

@PhilippeBoisney
Created March 1, 2017 09:33
Show Gist options
  • Save PhilippeBoisney/965ca974184f2672a532c2a5e0546980 to your computer and use it in GitHub Desktop.
Save PhilippeBoisney/965ca974184f2672a532c2a5e0546980 to your computer and use it in GitHub Desktop.
if let town = item["place"].dictionary {
if let town = town["address"]?.dictionary {
if let town = town["city"]?.dictionary {
if let town = town["name"]?.string {
rucheOfUser.town = town
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment