WWDC 2014 Brain Lanier
- Cleaner alternative to using sentinels (
NULL
,NSNotFound
, etc.) to represent invalid values - optionals are initialized to nil by default
var optionalNumber: Int?
nil
is a sentinel value that works with any type- value is wrapped in optional by setter
optionalNumber = 6