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

swift 灯光的打开与关闭

时间:2018-08-16 16:33:22      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:catch   return   ==   default   send   try   cte   lse   div   

func lightBtnAction(sender: UIButton){
        
        let device = AVCaptureDevice.default(for:.video)
        if device == nil {
            sender.isEnabled = false
            return
        }
        if device?.torchMode == .off{
            do {
                try device?.lockForConfiguration()
            } catch {
                return
            }
            device?.torchMode = .on
            device?.unlockForConfiguration()
            sender.isSelected = true
        }else {
            do {
                try device?.lockForConfiguration()
            } catch {
                return
            }
            device?.torchMode = .off
            device?.unlockForConfiguration()
            sender.isSelected = false
        }
    }

 

swift 灯光的打开与关闭

标签:catch   return   ==   default   send   try   cte   lse   div   

原文地址:https://www.cnblogs.com/kimiyo/p/9487860.html

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