Greetings,
Testing IOS 11.3 Beta on Iphone X, it seems the WKWebView does not respect the transparency rules set. I can confirm that this works fine with IOS 11.2.5. We Initialise WKWebView as follows. I've only tested using Iphone X. Instead of the background of the WebView being transparent, it is completly black.
[self.webView setOpaque:NO];
[self.webView.scrollView setOpaque:NO];
[self.webView setBackgroundColor:[UIColor clearColor]];
[self.webView.scrollView setBackgroundColor:[UIColor clearColor]];
[parentView addSubview:self.webView];
[parentView bringSubviewToFront:self.webView];
Has anything specific changed with the new Safari? or is this a known bug. Again the same content/code works fine with 11.2.5. Thank you!