Swift 3.0 打开手机手电筒

Swift 3.0 打开手机手电筒,第1张

概述@IBAction func lightButtonClick(_ sender: UIButton) { let device = AVCaptureDevice.defaultDevice(withMediaType: AVMediaTypeVideo) if device == nil { sender.isEnabled = fals
@IBAction func lightbuttonClick(_ sender: UIbutton) {        let device = AVCaptureDevice.defaultDevice(withMediaType: AVMediaTypeVIDeo)        if device == nil {            sender.isEnabled = false            return        }        if device?.torchMode == AVCapturetorchMode.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 3.0 打开手机手电筒全部内容,希望文章能够帮你解决Swift 3.0 打开手机手电筒所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1070334.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存