Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 235 Bytes

08闭包.md

File metadata and controls

11 lines (7 loc) · 235 Bytes

闭包

  • 闭包定义* 闭包简化 - 尾随闭包* 闭包参数* 闭包返回值* 闭包的循环引用
swiftweak var weakSelf = selfdemo("zhangsan") { (_) -> Int in print(weakSelf?.view.backgroundColor)

 return 20
}