在模拟器(iPhone 7和iPhone XR)中运行时,snapshotView(afterScreenUpdates:true)效果很好,符合预期。但是,当我在物理iPhone 7设备上对其进行测试时,它将返回空白视图,但框架正确

我需要UIView对象,并且不能使用UIImage,因为以前对类似问题的回答很多。

let snappedView = view.snapshotView(afterScreenUpdates: true)

最佳答案

也许此扩展程序将为您工作:

public extension UIView {

    public func snapshotImage() -> UIImage? {
    UIGraphicsBeginImageContextWithOptions(bounds.size, isOpaque, 0)
        drawHierarchy(in: bounds, afterScreenUpdates: false)
        let snapshotImage =         UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return snapshotImage
    }

    public func snapshotView() -> UIView? {
        if let snapshotImage = snapshotImage() {
            return UIImageView(image: snapshotImage)
        } else {
            return nil
        }
    }
}

08-15 21:01