美文网首页
Swift 中闭包的使用

Swift 中闭包的使用

作者: henu_Larva | 来源:发表于2018-07-05 15:23 被阅读11次

    声明

    func swiftBlock(endStr: String, _ callBack: (_ result: String) -> ()) {
            let str: String = "test" + endStr
            callBack(str)
     }
    

    调用:

    swiftBlock(end: "lalalla") { (_ str) in
            print("str === \(str)")
    }
    

    相关文章

      网友评论

          本文标题:Swift 中闭包的使用

          本文链接:https://www.haomeiwen.com/subject/pdepuftx.html