Last active
January 15, 2018 16:55
-
-
Save agoiabel/a731cbda92c67fbd1cff7aecbdd39309 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 the Person.house fails, it wil not get to the street | |
//which can either return a null or the street | |
let myStreet = Person.house?.street | |
//to make sure we get a value, we can include the if let like below | |
if let myStreet = Person.house?.street { | |
print(myStreet) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment