Post

Replies

Boosts

Views

Activity

Reply to Some redirect url links are not working when loaded by WKWebView
@ Sven what is the trick here - I cant get the createWebViewWith to get called ... so annoying. public class WebViewStore: ObservableObject {   @Published public var navDelegate = WebViewNavDelegate();   @Published public var uiDelegate = WebViewUIDelegate();     public init(webView: WKWebView = WKWebView()) {     log.info("WebViewStore.init")           self.webView.navigationDelegate = navDelegate;     self.webView.uiDelegate = uiDelegate; 	}
Oct ’20