Skip to content

Instantly share code, notes, and snippets.

@burritofanatic
Created January 28, 2016 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save burritofanatic/f1885cfd3068e4975c47 to your computer and use it in GitHub Desktop.
Save burritofanatic/f1885cfd3068e4975c47 to your computer and use it in GitHub Desktop.
Optional Binding
if let creditCardAccount = checkingOnly.creditCardAccount {
print(creditCardAccount)
} else {
print("The guy has no credit card")
}
// The guy has no credit card
if let bothProductCreditCardAccount = bothProducts.creditCardAccount {
print(bothProductCreditCardAccount)
} else {
print("The guy has no credit card")
}
// "109876"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment