Rakshit Korat
Rakshit Korat

Reputation: 1179

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

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)
    }

Upvotes: 21

Views: 6149

Answers (3)

rustyMagnet
rustyMagnet

Reputation: 4085

@Rakshit Korat had the answer. For a visual answer:

xCode 11

Under Target / Signing & Capabilities / App Sandbox.

enter image description here

Upvotes: 7

Sachin Singh
Sachin Singh

Reputation: 211

Select target

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

done

Upvotes: 14

Rakshit Korat
Rakshit Korat

Reputation: 1179

Check capabilities > Incoming and outgoing connections

Upvotes: 58

Related Questions