Swift 属性值监测

前端之家收集整理的这篇文章主要介绍了Swift 属性值监测前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

大家一定很熟悉Object-c中的观察者模式吧。Swift提供了一种更加简单的实现方式

当我们需要对对象的属性值进行赋值的时候,可以使用willSet和didSet进行对象属性值变化的观察。


我们直接看一个例子吧。创建一个类 Student 对属性 name进行监测

首先是Student类的定义

class Student{
    init(name:String){
        userName=name;
    }
    
    var userName:String=""{
        willSet{
            println("Student name newValue:\(newValue)")
        }
        didSet{
            println("Student name oldValue:\(oldValue)")
        }
        
    }
}


然后我们对Student进行初始化修改他的userName 试试看效果

  var student=Student(name: "张三")//注意,初始化的时候是不调用监测方法的
        student.userName="lisi"

打印结果如下


Student name newValue:lisi

Student name oldValue:张三


很简单吧,有问题可以继续讨论


苹果开发群 :414319235 欢迎加入 欢迎讨论问题

原文链接:https://www.f2er.com/swift/326157.html

猜你在找的Swift相关文章