swift 灯光的打开与关闭

时间:2023-03-09 22:13:49
swift 灯光的打开与关闭
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
}
}