You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The strong references to MyWebViewConfiguration, MyUIDelegate, and MyNavigationDelegate are nowhere to be found, so the instances are destroyed before they are applied to the WKWebView.
It will work if the parent View of the WebView has these references, but it is not necessarily used that way.
The text was updated successfully, but these errors were encountered:
Even if ChildView has a reference to ParentView, that alone will not cause a memory leak, so perhaps it is not a problem if it has a reference to an instance in struct View.
We changed the strong reference to a weak reference in PR #40, but this was a mistake.
The following implementations will no longer function.
The strong references to
MyWebViewConfiguration
,MyUIDelegate
, andMyNavigationDelegate
are nowhere to be found, so the instances are destroyed before they are applied to theWKWebView
.It will work if the parent View of the
WebView
has these references, but it is not necessarily used that way.The text was updated successfully, but these errors were encountered: