上QQ阅读APP看书,第一时间看更新
Nil-coalescing operator
The nil-coalescing operator assigns a value if it is not nil, or an alternative if it is:
let title = possibleString ?? "Untitled"
We check whether possibleString is nil; if it is, we assign "Untitled" to the title constant.