開發了一個手電筒應用。我想添加限制,讓應用只在帶有LED的設備上運行。
准備用UIDeviceRequiredCapabilities
,但是不知道具體用哪個鍵值?
謝謝。
AVCaptureDevice *flashLight = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
//手電筒是否可用
[flashLight isTorchAvailable];
//是否至此某模式
[flashLight isTorchModeSupported:AVCaptureTorchModeOn];
//手電筒是否已經開啟
[flashLight isTorchActive];