菜鸟教程小白 发表于 2022-12-12 11:47:00

iOS WKWebView.scrollView 委托(delegate)导致 BAD_ACCESS


                                            <p><p>我的 viewController 有一个 UIView 属性,其中包含一个 WKWebView。我将 WKWebView scrollView 委托(delegate)设置为我的 viewController,这是我的 UIView 子类的公共(public)函数,并在我的 viewController 中调用。 </p>

<p>问题是当我调用 <code></code> 时,它会在 <code></code> 上崩溃。
我通过在 viewController 的 <strong>dealloc</strong> 中添加 <code>viewController.UIView.WKWebView.scrollView.delegate = nil;</code> 解决了这个问题。</p>

<p>但是为什么呢? WKWebView 的 dealloc 是在 viewController 的 dealloc 之后,我想 viewController 设置为 nil 并且 WKWebView 中的 dealloc 会将其委托(delegate)更新为 nil 然后导致 BAD_ACCESS?但是为什么dealloc会隐式调用setDelegate???</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 WKWebView 的类似情况下,我在将委托(delegate)分配给自己时遇到了类似的问题。实现 deinit 为我解决了:</p>

<pre><code>deinit {
    webView.scrollView.delegate = nil
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS WKWebView.scrollView 委托(delegate)导致 BAD_ACCESS,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38733634/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38733634/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS WKWebView.scrollView 委托(delegate)导致 BAD_ACCESS