Questions tagged [wkwebviewconfiguration]

173 questions
0
votes
1 answer

How to configure WkWebView in xamarin.forms iOS?

Recently, I can't publish my new app to App Store due to the following error: ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn…
Sheng Jie
  • 141
  • 3
  • 16
0
votes
1 answer

WKWebView buttons dont work after Apple Login session

I'm stuck with a problem. First of all, I'm using MSAL and Azure B2C for the sign up. One of the Identity Providers is Apple Login. Now when I press the Apple Login button, the usual Face-Id screen opens. Great. Now say I changed my mind, and I…
0
votes
1 answer

WKWebView: The form is not submitting in WKWebView (Swift)

I am using a WKWebView and when the form is submitted, I am getting the breakpoint in decidePolicyFor navigationAction delegate method and the following condition is also true. navigationAction.navigationType == .formSubmitted The following code…
0
votes
1 answer

How to implement a native WKURLSchemeHandler in cordova-ios 6.1.0

I am working on a cordova ios (6.1.0) project and i want to implement a native WKURLSchemeHandler to intercept the custom scheme handling to solve my cors problems. In detail I want to do something like:…
0
votes
1 answer

WKWebView is not loading webpage on simulator

I am loading one web URL in WKWebView. I added network transportation layer and all other suggestion provided in different thread. But Working perfectly fine on Device bot not working on simulator. Please let me know what I am missing ? let…
pankaj nigam
  • 381
  • 1
  • 6
  • 9
0
votes
0 answers

WKWebView gives exception Thread 1: signal SIGABRT while using location

I have implemented WKWebView in my App. I want to show a website in it which uses the location like https://www.google.com/maps. I have added the required location usage key-value pair in info.plist. When I first open the app there is a prompt…
Vivek Shah
  • 430
  • 5
  • 22
0
votes
1 answer

IOS - WKWebview gets null url in decidePolicy when second clicking the same button

I have a WKWebview with a button that downloads a pdf, the button link is as follows: I…
0
votes
1 answer

URL is not opening in WKWebView in swift

I have a requirement to open the URL in WKWebView and login to the portal. As user logged in successfully after that I have to perform download operation from WKWebView, Everything is working fine but it's opening in external safari browser but as…
Sanjay Mishra
  • 672
  • 7
  • 17
0
votes
1 answer

Wkwebview 100% packet loss preset

I have an asynchronous call to refresh my cookies in a new wkwebview. public override func viewDidLoad() { super.viewDidLoad() let cookies = cookieService.getCookies(forDomain: urlService.getTopLevelDomain()) …
0
votes
0 answers

WKWebView not loading URL

I am trying to get WKWebView working, but it just won't load my URL. It loads https://apple.com, but no other URL. This is the code I have in my ViewController.swift: import UIKit import WebKit class ViewController: UIViewController, WKUIDelegate…
Bob
  • 53
  • 6
0
votes
1 answer

change margin for

I wanted to reduce the space in the HTML string. below is the code is am using NSString *headerString = @"
javascript
ios developer
  • 3,363
  • 3
  • 51
  • 111
0
votes
0 answers

iOS Swift WKWebView Maintain User after login at app level

I am loading a url on webview, in which user will have to login. I am making a request by following way: let urlStr =…
0
votes
2 answers

How to fix loading images in .html by WKWebView on iOS device (UniWebView 3, Unity)?

I use UniWebView 3 plugin for Unity for display local .html files. This plugin use WKWebView which does not load local images in .html on iOS device. But .css and .js files succesfully loads (which are in header). In Unity editor images are show…
Bodix
  • 404
  • 5
  • 7
0
votes
0 answers

What is the configuration to be inspectable iphone's inner app's WKwebview?

I'm not a swift developer, but javascript developer. As far as I know, to inspect the WKWebView by my iMac's safari, there's gotta be some configurations for WKWebView. So, that can make to be able to inspect my WKWebView. But I don't know exactly…
0
votes
0 answers

Cocoa Swift: How to ensure WKWebView will load url request

I'm implementing an WKWebView but when there is an issue with the network such slow network connection the WKWebView loads blank page. Here is my implementation: func loadWebView() { if let url = URL(string: self.urlLbl.stringValue){ let…
user2924482
  • 8,380
  • 23
  • 89
  • 173