这是我的真实代码:
@IBOutlet weak var contentTextView: SmartTextView! {
didSet {
self.contentTextView.onDidBeginEditing = {
$0.layer.borderColor = Util.green.CGColor
}
self.contentTextView.onDidEndEditing = {
$0.layer.borderColor = Util.gray.CGColor
}
self.contentTextView.layer.borderWidth = 1 / Util.screenScale
self.contentTextView.layer.borderColor = Util.gray.CGColor
self.contentTextView.minHeight = 148
self.contentTextView.maxHeight = 148
self.contentTextView.onChange = { [unowned self] text in
var content = text.stringByTrimmingCharactersInSet(NSCharacterSet(charactersInString: "\n\t"))
self.contentLenthLabel.text = "\(self.MAX_CONTENT - count(content))"
}
}
}
如果我删除 [unowned self] 语句,我可以在 Instruments 中看到保留周期问题。
KVO 或其他东西使弱 var 仍然会导致保留循环吗?
Best Answer-推荐答案 strong>
weak 引用是一条红鲱鱼;它与这里的故事无关。如果没有 [unowned self] ,您将保留此 View ,而此 View 将保留您。这是一个保留周期:
UIViewController 保留其 View
View 保留其 subview ;这些 subview 之一是 SmartTextView
SmartTextView保留onChange 功能
函数保留self (UIViewController),除非你说unowned self 。
关于iOS - 弱 var 仍然会导致保留周期?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/32551677/
|