Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Last active January 15, 2018 16:55
Show Gist options
  • Save agoiabel/a731cbda92c67fbd1cff7aecbdd39309 to your computer and use it in GitHub Desktop.
Save agoiabel/a731cbda92c67fbd1cff7aecbdd39309 to your computer and use it in GitHub Desktop.
//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