Created
January 8, 2018 05:58
-
-
Save gregorymfoster/71cb708df9307f0015ed1ffd3dc3233d to your computer and use it in GitHub Desktop.
Unwrapping Optional Swift Value
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 let sideLength = optionalSquare?.sideLength { | |
println("sideLength is not nil") | |
} else { | |
println("sidelength is nil") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment