Remove UIWebView Shadow?

后端 未结 15 1176
慢半拍i
慢半拍i 2020-12-02 11:12

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

15条回答
  •  离开以前
    2020-12-02 12:01

    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
            }
        }
    }
    

提交回复
热议问题