Top "Wkwebviewconfiguration" questions

How to check if WkWebView finish loading in Objective-C?

I want to load HTML pages using WkWebView and I want to show the page just after it's finished loading. …

ios objective-c wkwebview wkwebviewconfiguration
How to delete WKWebview cookies

For now I am doing like this NSHTTPCookie *cookie; NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; for (cookie in [storage cookies]) { [storage deleteCookie:…

ios xcode uiwebview wkwebview wkwebviewconfiguration
WKWebview evaluateJavascript is not working, throws an error

I am trying to call an existent function from a remote site in a WKWebview: function addtext (text) { jQuery("#webviewtest").…

javascript ios objective-c wkwebview wkwebviewconfiguration
How to embed WKWebView inside custom UIView properly?

In my project I have a view controller where i want to show WKWebView embedded inside another UIView titled viewForEmbeddingWebView …

swift swift3 xcode8 wkwebview wkwebviewconfiguration
Script message handler not working

I am trying to inject a custom WebKit script message handler. My controller is correctly loaded and the view as …

ios swift wkwebview wkwebviewconfiguration
Ionic 3 Response with status: 0 for URL: null

I have an Ionic 3 app. I recently added the iOS platform. When i run it on iOS (emulator and device) …

ios ionic-framework ionic3 wkwebview wkwebviewconfiguration
Get Javascript function response in iOS using Swift

I am trying to figure out how to implement JavaScript functions inside my iOS app using swift platform . I have …

javascript ios swift wkwebview wkwebviewconfiguration
WKWebView completionHandler called before dismissal

I am using WKUIDelegate this function to handle javascript alert -(void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)…

ios objective-c wkwebview wkwebviewconfiguration
Call a swift function from java script that returns a value using wk webview

I want to call a swift function from java script code which returns the device id back to the script, …

javascript ios swift wkwebview wkwebviewconfiguration
WKUserScript not working

I want to inject a script using WKWebview API. For some reason it isn't working and I can't figure it …

javascript wkwebview wkuserscript wkwebviewconfiguration