April 2015
Intermediate to advanced
556 pages
17h 47m
English
Swift has a generic optional type, Optional<T>. In practice, an
optional is indicated by appending ? to a type name:
var anOptionalFloat: Float? var anOptionalArrayOfStrings: [String]? var anOptionalArrayOfOptionalStrings: [String?]?
An optional lets you express the possibility that a variable may not store a value at all. The value of an optional will either be an instance of the specified type or nil.
Throughout the book, you will have many chances to use optionals. What follows is an example to get you familiar with the syntax so that you can focus on the use of the optionals later.
Imagine a group of instrument readings.
var reading1: Float var reading2: Float var reading3: Float
Sometimes, an instrument ...