If someone has experience with WKWebView
, please share how to make the background of the view transparent. The WebView
object has such option via var drawsBackground: Bool { get set }
but it is missing for the WKWebView
class. I searched the net and .. found nothing. Before time it was possible to do so via opaque
property, but not anymore. There is a getter isOpaque
... and that's it. I don't want to do it via CSS and already tried everything else, like:
webview.wantsLayer = true
webview.layer?.backgroundColor = NSColor.clear.cgColor
If someone can help ...
I. Nikolov