What is an “unwrapped value” in Swift?
问题 I'm learning Swift for iOS 8 / OSX 10.10 by following this tutorial, and the term " unwrapped value " is used several times, as in this paragraph (under Objects and Class ): When working with optional values, you can write ? before operations like methods, properties, and subscripting. If the value before the ? is nil, everything after the ? is ignored and the value of the whole expression is nil. Otherwise, the optional value is unwrapped , and everything after the ? acts on the unwrapped