iOS14 最新隐私适配 [相机和麦克风]完美解决方案

今天爱分享给大家带来iOS14 最新隐私适配 [相机和麦克风]完美解决方案,希望能够帮助到各位。

相机和麦克风
 iOS14 中 App 使用相机和麦克风时会有图标提示以及绿点和黄点提示,并且会显示当前是哪个 App 在使用此功能。我们无法控制是否显示该提示。

会触发录音小黄点的代码示例:

AVAudioRecorder *recorder = [[AVAudioRecorder alloc] initWithURL:recorderPath settings:nil error:nil];
[recorder record];

触发相机小绿点的代码示例:

AVCaptureDeviceInput *videoInput = [[AVCaptureDeviceInput alloc] initWithDevice:videoCaptureDevice error:nil];
AVCaptureSession *session = [[AVCaptureSession alloc] init];
if ([session canAddInput:videoInput]) {
    [session addInput:videoInput];
}
[session startRunning];

人已赞赏
IOS

iOS14 最新隐私适配 [剪切板]完美解决方案

2020-9-27 14:59:48

IOS

iOS14 最新隐私适配 [IDFA]完美解决方案

2020-9-27 15:23:58

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
'); })();