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

相关文章

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