美文网首页iOS 开发 学习
ios 屏幕截图返回成图片的方法

ios 屏幕截图返回成图片的方法

作者: 清蘂翅膀的技术 | 来源:发表于2017-05-16 11:20 被阅读10次

#pragma mark-截图

- (UIImage*)screenshot:(UIView*)inputView {

UIGraphicsBeginImageContextWithOptions(inputView.bounds.size,NO,0);

[inputView drawViewHierarchyInRect:inputView.frame afterScreenUpdates:YES];

UIImage*image =UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return image;

}

相关文章

网友评论

    本文标题:ios 屏幕截图返回成图片的方法

    本文链接:https://www.haomeiwen.com/subject/xyqlxxtx.html