SwiftUI语法笔记
挖坑)在大大的文档里面挖呀挖呀挖
Swift语法笔记
控制流if和guard
if let 解包后,if作用域外不可使用。
guard let 提前处理可选值为 nil 的情况,else 用来return异常情况,在解包后的值在后续代码继续使用。
12345678910111213141516func testA() -> String{ var c: String? guard let cValue = c else { return "c is nil" } return cValue}func testB() -> String{ var c: String? if let cValue = c { return "\(cValue) is not nil" } else { return "c is nil" }}
switch
每个case无需break即可自动跳出
...