我的应用程序ios 10中的屏幕截图

时间:2017-05-20 08:52:30

标签: ios iphone ios10

我希望在发生事件时截取我应用中的显示内容。 我阅读了这些链接(123),但它们不适用于ios 10.我想知道我是否可以这样做。

由于

1 个答案:

答案 0 :(得分:0)

扩展名UIView {

public func toImage () -> UIImage {
    UIGraphicsBeginImageContextWithOptions(bounds.size, isOpaque, 0.0)
    drawHierarchy(in: bounds, afterScreenUpdates: false)
    let img = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    return img!
}

}