swift - Property Observers

前端之家收集整理的这篇文章主要介绍了swift - Property Observers前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在oc世界里,我们为了给一个类的属性赋值时做一些处理操作,主要通过重写getter和setter方法,但是在swift世界里,是通过属性的willSet和didSet(属性监视器)来达到这个效果

willSet is called just before the value is stored.

didSet is called immediately after the new value is stored.

var title: String {       
    willSet {
       print( "will set ")
       NSThread.sleepForTimeInterval(2)
    }
    didSet {
       print("did set")
       self.backgroundColor = UIColor.grayColor()
    }
  }

我们在属性title的值即将改变之前 为了更好理解willSet 和didSet,我们让线程休眠2s,改变之后,让view的背景色变为gray.
在touchesBegan方法里改变属性title的值

override func touchesBegan(touches: Set<UITouch>,withEvent event: UIEvent?) {
        testV.title = "test"
}

果然不出意料,点击之后打印will set 然后2s后打印did set 并且bgColor变为了gary

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

猜你在找的Swift相关文章