属性 闭包初始化

Property Initialization with closures

我正在研究 ARC 和强引用循环,运行 我的这段代码:

class TestClass: UIView {
  let button: UIButton = {
    let view = UIButton()
    view.frame = CGRect(x: 50, y: 50, width: 200, height: 200)
    view.backgroundColor = .blue
    view.translatesAutoresizingMaskIntoConstraints = false
    view.setTitle("Button", for: .normal)
    view.addTarget(self, action: #selector(buttonClicked), for: .touchUpInside)
    return view
  }()

  @objc private func buttonClicked() {
    print("Clicked")
  }

  override init(frame: CGRect) {
    super.init(frame: frame)
    print("Object of TestClass initialized")
  }

  required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
  }

  deinit {
    print("Object of TestClass deinitialized")
  }
}

闭包内 addTarget 方法中对 self 的引用似乎没有创建强引用循环。

谁能解释为什么?

此外,我注意到如果我从 UIView 中删除继承,编译器会开始抱怨:Use of unresolved identifier 'self'.

谁也能解释一下,为什么在这种情况下会发生,而在第一个情况下不会?

不是一个保留周期,因为self不是你想的那样:)

具有初始值的属性甚至在任何初始化程序运行之前都是 "executed",并且对于这些属性 self 指向此类型的高阶函数:

(TestClass) -> () -> TestClass

所以您实际上并没有访问实例,而是访问了一个类似于 static 的方法,该方法对所有具有默认值的属性进行初始化。这就是您没有保留周期的原因。

addTarget 接受一个 Any? 值作为它的第一个参数,所以这不违反任何类型规则,所以编译器不会抱怨你没有在那里传递 NSObject 实例.

检查以后的行为 - 例如如果按钮被添加到 UI 层次结构并被点击会发生什么,揭示了一些有趣的事情:运行时看到您将 non-object 作为目标传递并为目标和操作设置空值: