Maybe this is a completely different situation, but I always got a WebView[43046:188825] Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service when opening a web page on the simulator, when a debugger is connected to it .. If I finish the debugger and open the application again, the web page will open just fine. This does not happen on devices.
After spending a whole day trying to figure out what was wrong, I found that if we have a framework called Preferences , UIWebView and WKWebView will not be able to open the web page and the WKWebView error above.
To reproduce this error, simply make a simple application with WKWebView to display the web page. Then create a new framework target and name it “ Preferences . Then import it into the main target and run the simulator again. WKWebView will not be able to open the web page.
So this may be unlikely, but if you have a framework called Preferences , try deleting or renaming it.
Also, if anyone has an explanation for this, please share.
By the way, I was on Xcode 9.2.
source share