菜鸟教程小白 发表于 2022-12-12 16:16:20

iOS - 弱 var 仍然会导致保留周期?


                                            <p><p>这是我的真实代码:</p>

<pre><code>@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 = { text in
            var content = text.stringByTrimmingCharactersInSet(NSCharacterSet(charactersInString: &#34;\n\t&#34;))
            self.contentLenthLabel.text = &#34;\(self.MAX_CONTENT - count(content))&#34;
      }
    }
}
</code></pre>

<p>如果我删除 <code></code> 语句,我可以在 Instruments 中看到保留周期问题。</p>

<p>KVO 或其他东西使弱 var 仍然会导致保留循环吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>weak</code> 引用是一条红鲱鱼;它与这里的故事无关。如果没有 <code></code>,您将保留此 View ,而此 View 将保留您。这是一个保留周期:</p>

<ul>
<li><p>UIViewController 保留其 View </p></li>
<li><p> View 保留其 subview ;这些 subview 之一是 SmartTextView</p></li>
<li><p>SmartTextView保留<code>onChange</code>功能</p></li>
<li><p>函数保留<code>self</code>(UIViewController),除非你说<code>unowned self</code>。</p></li>
</ul></p>
                                   
                                                <p style="font-size: 20px;">关于iOS - 弱 var 仍然会导致保留周期?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32551677/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32551677/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS - 弱 var 仍然会导致保留周期?