I\'m looking for a way to show the inspector for a WKWebView inside my Mac app.
With WebKit1 and WebView it was easy to show the inspector inside your Mac app, by ju
Building on Koen Bok's answer, for Swift, confer this gist. Using those files, you'll need to add the following line to your bridging header:
#import "WKPreferences+DevExtras.h"
Usage looks like
let webView = WKWebView(frame: window.frame) webView.configuration.preferences.enableDevExtras();