. Advertisement .
..3..
. Advertisement .
..4..
Last night, I had a problem with “could not signal service com.apple.webkit.webcontent: 113: could not find specified service”. Below is the problem I have:
Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service
Please show me how to address this problem if anyone has any suggestions. Thanks!
The cause:
After reading the problems, I discovered the flaw in this situation. Because you didn’t add a WKWebView object as a subview to the view and tried to execute – loadHTMLString:baseURL: on top of it. And you were only adding it to the view’s subviews after it had successfully loaded, which was completely incorrect.
The solution:
I’ll share the solution I came up with for this situation as follow:
1. Add a WKWebView object to the subviews array of the view.
2. For a recently added WKWebView
And use:
I hope to be of assistance to you. Best of luck!