Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cocoa App webview not loading request

I have used webview to load url but it is not loaded.

i have tried the same with wkwebview but couldn't load url.

I have done following

  • import WebKit
  • Info.plist
    • Allow Arbitrary Loads - YES
    • Allow Arbitrary Loads in Web Content - YES

LOG:

dnssd_clientstub ConnectToServer: connect()-> No of tries: 1

dnssd_clientstub ConnectToServer: connect()-> No of tries: 2

dnssd_clientstub ConnectToServer: connect()-> No of tries: 3 dnssd_clientstub ConnectToServer: connect() failed path:/var/run/mDNSResponder Socket:11 Err:-1 Errno:1 Operation not permitted

nw_resolver_create_dns_service_locked DNSServiceCreateConnection failed: ServiceNotRunning(-65563)

-CODE

 @IBOutlet weak var webvw: WebView!

 override func viewDidAppear() {
        super.viewDidAppear()

        guard let url = URL(string: "https://www.google.co.in") else { return }
        let request = URLRequest(url: url)

        webvw.uiDelegate = self
        webvw.frameLoadDelegate = self
        webvw.mainFrame.load(request)
    }
like image 385
Rakshit Korat Avatar asked Oct 15 '17 11:10

Rakshit Korat


2 Answers

Check capabilities > Incoming and outgoing connections

like image 189
Rakshit Korat Avatar answered Nov 20 '22 17:11

Rakshit Korat


Select target

  1. find capabilities
  2. Turn on app sand box if it's off
  3. Tick both network option

done

like image 13
Sachin Singh Avatar answered Nov 20 '22 15:11

Sachin Singh