码迷,mamicode.com
首页 > 编程语言 > 详细

swift3.0 屏幕截图并且保存到本地相册

时间:2017-05-31 19:06:34      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:error   etc   屏幕截图   pre   inf   swift   截图   uiimage   ons   

所要截取的对象

var bg_view: UIView!

截取并且保存的代码如下

UIGraphicsBeginImageContextWithOptions(bg_view.frame.size, false, UIScreen.main.scale)
bg_view.layer.render(in: UIGraphicsGetCurrentContext()!)
        
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
        
UIImageWriteToSavedPhotosAlbum(image!,self,#selector(image(_:didFinishSavingWithError:contextInfo:)), nil)

结束!

swift3.0 屏幕截图并且保存到本地相册

标签:error   etc   屏幕截图   pre   inf   swift   截图   uiimage   ons   

原文地址:http://www.cnblogs.com/kunH/p/6925176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!