Skip to content

Instantly share code, notes, and snippets.

@chreke
Created January 13, 2017 16:24
Show Gist options
  • Save chreke/893b1e8ced845e75639f1cd3abb04d18 to your computer and use it in GitHub Desktop.
Save chreke/893b1e8ced845e75639f1cd3abb04d18 to your computer and use it in GitHub Desktop.
Some Swift example code
var maybeString: String?
var maybeAnotherString: String?
maybeString = "hej"
// Optional binding
if let aString = maybeString {
print("This is a string: \(aString)")
}
// Optional chaining
let count: Int? = maybeAnotherString?.characters.count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment