闭包

    闭包的基础我就不说了,网上多如牛毛,现在来介绍几种使用的反向传值的方法。

第一种:

ViewController.swift

@objc func nextController() {

        let aaa = AAAViewController()

        weak var weakSelf = self

        aaa.getBackValue(title: "nextViewController", backgroundColor: UIColor.gray) { (backColor, title) in

            weakSelf.view.backgroundColor = backColor

            weakSelf.title = title

            print("selft.title: \(String(describing:  weakSelf.title ))")

        }

        self.present(aaa, animated: true, completion: nil)

}


AAAViewController.swift 

func getBackValue(title: String? = "AAAViewController", backgroundColor: UIColor, lastControllerValue: (_ backgroundColor: UIColor, _ title: String?) -> Void) {

        self .title = title

       self .view.backgroundColor =  backgroundColor

        lastControllerValue(UIColor.green, "ViewController")

    }

deinit { print("22222222222我释放了无用的内存!!") }

这样就可以把闭包中的值传递过去,但是当 lastControllerValue(UIColor.green, "ViewController") 中的  "ViewController" 换为 self.textField.text 时,在返回值中传递的是空值。因为在 还没跳转到AAAViewController中时,就将值返回去了。所以    lastControllerValue 闭包中的  self.textField.text 为 nil。


第二种:

ViewController.swift  中

@objc func nextController() {

        let aaa = AAAViewController()

        aaa.changeTitleAndClosure = {

            (color: UIColor, title: String) in

            self.view.backgroundColor = UIColor.red

            self.title = title

            } 

        self.present(aaa, animated: true, completion: nil)

}


AAAViewController.swift 

var changeTitleAndClosure:((_ color:UIColor, _ title:String) -> Void)?

@objc func lastController() {

        self.dismiss(animated: true, completion: nil)

        self.changeTitleAndClosure?(UIColor.green, self.textField.text!)

}

可以将 TextField 中的值传递过去,但是 定义闭包时参数一定不要为可选值,🐔:

var changeTitleAndClosure:((_ color:UIColor?,  _ title:String?) -> Void)?

否则,在 ViewController 中的闭包不执行。若非要空,可给它设置一个默认值,🐔:

var changeTitleAndClosure:((_ color:UIColor? = UIColor.orange,  _ title:String? = "12345") -> Void)?


第三种:

ViewController.swift

@objc func nextController() {

        let aaa = AAAViewController()

        aaa.loadData(color: UIColor.red, title: "12345") { (title) in

            print("title: \(title)")

        }

        self.present(aaa, animated: true, completion: nil)

    }


AAAViewController.swift

func loadData(color: UIColor, title: String,completion:  (_ result:String) -> ()) -> () {

        self.view.backgroundColor = color

        print("----->title: \(title)")

          completion(self.textField.text!)

    }


第四种:尾随闭包

增加代码的可读性

ViewController.swift

@objc func nextController() {

        let aaa = AAAViewController()

        aaa.loadData(color: UIColor.red, title: "12345", completion: {

            (title) in

            print("~~~~~~~> \(title)")

        })

        self.present(aaa, animated: true, completion: nil)

    }

AAAViewController.swift

func loadData(color: UIColor, title: String,completion:   (_ result:String) -> ()) -> () {

        self.view.backgroundColor = color

        print("----->title: \(title)")

            print("耗时操作 \(Thread.current)")

                //回调异步获取的结果

                completion("武松打虎")

    }


第五种: 逃逸闭包

关键字: @escaping

        传递给函数的闭包如果不是在函数内调用,而是在函数内用外部变量保存当前的闭包,在合适的时间再进行调用,需要在闭包参数前加入@escaping关键字,否则编译器会报错

ViewController.swift

@objc func nextController() {

        let aaa = AAAViewController()

        aaa.loadData(color: UIColor.red, title: "12345", completion: {

            [unowned self](title) in

            print("~~~~~~~> \(title)")

            print("weadSelf.view: \(self.view ?? nil)")

        })

        self.present(aaa, animated: true, completion: nil)

    }


AAAViewController.swift

//定义一个闭包属性

 var completions : ((_ title: String) -> ())?


@objc func lastController() {

        self.dismiss(animated: true, completion: nil)

        self.completions?(self.textField.text!)

    }


func loadData(color: UIColor, title: String,completion: @escaping (_ result:String) -> ()) -> () {

        self.view.backgroundColor = color

        print("----->title: \(title)")

        self.completions = completion

    }


    deinit {

        print("22222222222我释放了无用的内存!!")

    }





第六种: 懒加载

懒加载只会在第一次调用时执行创建对象,后面如果对象被释放了,则不会再次创建。而oc中会再次创建。

1.

lazy var person : Human = {  

        print("懒加载的定义")  

        return Human()  

    }()  


//2、懒加载改写为闭包形式  

 let personFunc = { () -> Human in  

        print("懒加载 --> 闭包")  

        return Human()  

    }  

    lazy var personDemo : Human =self.personFunc()  


//3、懒加载的简单写法  

lazy var person2 : Human = Human()  



问题: 解决闭包中存在的循环引用

记住这一点:

VC --strong -- 闭包;

闭包- strong -- VC;

就造成了循环引用, Swift 属性的默认 就是强引用:记录了闭包属性,然后在闭包中又使用了self,则产生了循环引用 

在ARC中,weak本质是一个观察者模式,一旦对象释放,则把对象置为nil  

在MRC中,是通过assign进行若引用的,如果对象释放,assign的指针还是指向该内地地址,会造成野指针 

 __weak typeof(self) weakSelf = self; 

 //__unsafe_unretained相当于assign, 

 __unsafe_unretained typeof(self) weak1Self = self;  

方式一:

关键字: weak

注意:weak只能修饰var,不能修饰let,因为如果weak的指针在运行时会被修改,会自动设置为nil  

ViewController.swift

@objc func nextController() {

        let aaa = AAAViewController()

        aaa.loadData(color: UIColor.red, title: "12345", completion: {

            (title) in

            print("~~~~~~~> \(title)")

            print("weadSelf.view: \(self.view ?? nil)")

        })

        self.present(aaa, animated: true, completion: nil)

    }


AAAViewController.swift

// 定义一个闭包属性

var completion : ((_ title: String) -> ())?

func loadData(color: UIColor, title: String,completion: @escaping (_ result:String) -> ()) -> () {

        weak var weakSelf = self

        weakSelf?.view.backgroundColor = color

        print("----->title: \(title)")

        completion("武松打虎")

    }


    deinit {

        print("22222222222我释放了无用的内存!!")

    }


方式二:

推荐:

[weak self]表示闭包中的self都是若引用

ViewController.swift

@objc func nextController() {

        let aaa = AAAViewController()

        aaa.loadData(color: UIColor.red, title: "12345", completion: {

            [weak self](title) in

            print("~~~~~~~> \(title)")

            print("weadSelf.view: \(self?.view ?? nil)")

        })

        self.present(aaa, animated: true, completion: nil)

    }

AAAViewController.swift

//定义一个闭包属性

var completion : ((_ title: String) -> ())?

func loadData(color: UIColor, title: String,completion: @escaping (_ result:String) -> ()) -> () {


        self.view.backgroundColor = color

        print("----->title: \(title)")

        completion("武松打虎")

    }


    deinit {

        print("22222222222我释放了无用的内存!!")

    }


方式三:

关键字:

[unowned self]:表示闭包中的self为assign,如果self被释放,则指针地址不会被释放,容易导致出现野指针 

ViewController.swift

@objc func nextController() {

        let aaa = AAAViewController()

        aaa.loadData(color: UIColor.red, title: "12345", completion: {

            [unowned self](title) in

            print("~~~~~~~> \(title)")

            print("weadSelf.view: \(self.view ?? nil)")

        })

        self.present(aaa, animated: true, completion: nil)

    }


  AAAViewController.swift

//定义一个闭包属性

 var completion : ((_ title: String) -> ())?

func loadData(color: UIColor, title: String,completion: @escaping (_ result:String) -> ()) -> () {


        self.view.backgroundColor = color

        print("----->title: \(title)")

        completion("武松打虎")

    }


    deinit {

        print("22222222222我释放了无用的内存!!")

    }

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容