Created
March 1, 2017 09:33
-
-
Save PhilippeBoisney/965ca974184f2672a532c2a5e0546980 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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