Does anyone know if its possible to remove the shadow that is placed on the UIWebView window?
Example: http://uploadingit.com/files/1173105_olub5/shadow.png
Try this
func webViewDidFinishLoad(_ webView: UIWebView) { for shadowView in self.webView.scrollView.subviews { if !shadowView.isKind(of: UIImageView.self) { shadowView.subviews[0].layer.shadowColor = UIColor.clear.cgColor } else { shadowView.layer.shadowColor = UIColor.clear.cgColor } } }