摘要: /** 闭包关键字: @noescape 非逃逸闭包 默认状态。 闭包在函数结束之前被调用 @escaping 逃逸闭包 闭包在函数结束后回调 */ // func block(resource: (_ content: String) -> (), with: String) { resource(with) } block(resource: { (c... 阅读全文
posted @ 2017-09-17 15:11 刘冠 阅读(132) 评论(0) 推荐(0) 编辑