菜鸟教程小白 发表于 2022-12-13 06:46:27

iOS如何正确移除观察者


                                            <p><p>我想弄清楚如何删除以下观察者:</p>

<pre><code>[self.messageInputView.textView addObserver:self
                                 forKeyPath:@&#34;contentSize&#34;
                                    options:NSKeyValueObservingOptionNew
                                    context:nil];
</code></pre>

<p>我想在我的 dealloc 方法中清理它。</p>

<p>我试过了:</p>

<pre><code>[ removeObserver:self];
</code></pre>

<p>但这似乎没有这样做。</p>

<p>有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>那是因为您没有将自己添加为 NSNotificationCenter 的观察者。尝试:
<code></code></p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS如何正确移除观察者,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22045094/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22045094/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS如何正确移除观察者