[swift]-闭包的简单使用、定义

1:swift中闭包和oc中block一样都是常用于回调闭包也是一种特殊函数

2:代码演示:

import UIKit

class HttpTools: NSObject {
    
    // 闭包的类型:(参数列表) -> (返回值类型)
    func loadData(callBack : (jsonData : String) -> ()) {
        dispatch_async(dispatch_get_global_queue(0,0)) {
            print("发送网络请求\(NSThread.currentThread())")
            
            dispatch_sync(dispatch_get_main_queue(),{ 
                print("获取到数据,并且进行回调:\(NSThread.currentThread())")
                callBack(jsonData: "jsonData数据===================")
                
            })
        }
    }

}
import UIKit

class ViewController: UIViewController {
    
    // 创建属性的同时初始化对象
    var tools : HttpTools = HttpTools()
    
    override func touchesBegan(touches: Set<UITouch>,withEvent event: UIEvent?) {
        print("-----");
        tools.loadData { (jsonData) in
            print("拿到了json数据了:\(jsonData)")
        }
    }
}

3:闭包的定义格式: (参数列表) -> (返回值类型)

如:callBalk : (jsonData : String) -> ()

4:swift中:标志符在前 : 类型 && OC中:类型在前 * 标志符名字

意见反馈邮件:1415429879@qq.com 欢迎你们的阅读和赞赏、谢谢!

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...