美文网首页
闪光灯-AVCaptureDevice (AVCaptureDe

闪光灯-AVCaptureDevice (AVCaptureDe

作者: lltree | 来源:发表于2017-12-08 10:31 被阅读62次

闪光灯是否存在

@property(nonatomic, readonly) BOOL hasFlash;

闪光灯是否可用

@property(nonatomic, readonly, getter=isFlashAvailable) BOOL flashAvailable

闪光灯是否活跃中

@property(nonatomic, readonly, getter=isFlashActive) BOOL flashActive

设置闪光灯模式

@property(nonatomic) AVCaptureFlashMode flashMode
- (BOOL)isFlashModeSupported:(AVCaptureFlashMode)flashMode
typedef NS_ENUM(NSInteger, AVCaptureFlashMode) {
    AVCaptureFlashModeOff  = 0,
    AVCaptureFlashModeOn   = 1,
    AVCaptureFlashModeAuto = 2,
} NS_AVAILABLE(10_7, 4_0) __TVOS_PROHIBITED;

相关文章

网友评论

      本文标题:闪光灯-AVCaptureDevice (AVCaptureDe

      本文链接:https://www.haomeiwen.com/subject/bundixtx.html