Remove UIWebView Shadow?

后端 未结 15 1177
慢半拍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:10

    if (UIDevice.currentDevice.systemVersion.intValue < 7)
        for (UIImageView *imageView in webView.scrollView.subviews)
            if ([imageView isKindOfClass:[UIImageView class]] && imageView.image.size.width == 1)
                imageView.hidden = YES;
    

提交回复
热议问题