Created
June 10, 2016 03:32
-
-
Save STAR-ZERO/edb6d8d6e7ec3c55b8ded8bd1b608090 to your computer and use it in GitHub Desktop.
もっと良い書き方無いかな?
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
func foo() -> String? { | |
return nil | |
} | |
let hoge: String | |
if let t = foo() { | |
// nilじゃなければ、その値を使いたい | |
hoge = t | |
} else { | |
// nilだったらデフォルト設定したい | |
hoge = "default" | |
} | |
print(hoge) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment