swift ---- block用法
2016-11-25 本文已影响230人
71150ce14a00
1.声明block 方法
typealias swiftBlock = (_ str:String) ->Void
2.声明block 属性
var getdatBck:swiftBlock?
3. 发送block请求方法
self.getdatBck!("aaa")
接收block页面
xxx.getdatBck = { str in
print(str)
}