Top "Wkwebview" questions

A WKWebView object displays interactive web content.

Can't set headers on my WKWebView POST request

I want to do a POST request to my WKWebView but the headers doesn't get set when I monitor the …

ios objective-c nsurlrequest charles-proxy wkwebview
Swift 3 - Check if WKWebView has loaded page

My question: How do I check if a page in WKWebView has fully loaded in Xcode using Swift 3? This is …

swift xcode swift3 webkit wkwebview
WKWebView Persistent Storage of Cookies

I am using a WKWebView in my native iPhone application, on a website that allows login/registration, and stores the …

ios cookies wkwebview
How to add HTTP headers in request globally for iOS in swift

func webView(webView: WKWebView!, decidePolicyForNavigationAction navigationAction: WKNavigationAction!, decisionHandler: ((WKNavigationActionPolicy) -> Void)!) { var request = NSMutableURLRequest(URL: navigationAction.request.URL) request.…

ios swift http wkwebview request-headers
What's the difference between UIWebView and WKWebView when loading local resources

I want to load local resources with webView. I built a demo with both UIWebView and WKWebView to do some …

ios uiwebview wkwebview
WKWebView not in Xcode

I need to implement the WKWebview for my ios app with Xcode. However i have error when using it "undeclared …

xcode wkwebview
WKWebView does not load https URL?

I have a WKWebView which should load the following url: https://buchung.salonmeister.de/place/#offer-details-page?id=907599&venueId=301655 Her …

ios objective-c iphone swift wkwebview
WKWebview - Complex communication between Javascript & native code

In WKWebView we can call ObjectiveC/swift code using webkit message handlers eg: webkit.messageHandlers.<handler>.pushMessage(message) …

javascript ios objective-c swift wkwebview
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
How to debug javascript code inside a WKWebView

I'm having some trouble with running a webapp in a WKWebView (specifically: some buttons are not responding). I used this …

javascript ios debugging ios8 wkwebview