Skip to content

Instantly share code, notes, and snippets.

@BradB132
Last active August 29, 2015 14:22
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 BradB132/685955359e19ed0d23a8 to your computer and use it in GitHub Desktop.
Save BradB132/685955359e19ed0d23a8 to your computer and use it in GitHub Desktop.
SwiftTricks-1
//don't do this
if let string = optionalString {
myFunc(string)
}
else {
myFunc("defaultValue")
}
//do this instead
myFunc(optionalString ?? "defaultValue")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment