iOS二次发育(swift)闭包

/**
闭包关键字:
 @noescape 非逃逸闭包 默认状态。 闭包在函数结束之前被调用
 @escaping 逃逸闭包            闭包在函数结束后回调
 */
//

func block(resource: (_ content: String) -> (), with: String) {
    resource(with)
}

block(resource: { (content) in
    print(content)
}, with: "456")

 

posted @ 2017-09-17 15:11  刘冠  阅读(132)  评论(0编辑  收藏  举报