gpt4 book ai didi

ios - 如何限制用户在 iOS 应用程序中使用后置摄像头

转载 作者:行者123 更新时间:2023-11-28 08:32:54 25 4
gpt4 key购买 nike

我正在开发一个 iOS 应用程序,用户可以在其中拍照。但是,我希望用户只能使用前置摄像头。也就是说,他们不应该使用后置摄像头。目前,我的代码如下所示:

@IBAction func takePicture(sender: UIButton) {

if UIImagePickerController.availableCaptureModesForCameraDevice(.Front) != nil {
let imagePickerController = UIImagePickerController()
imagePickerController.sourceType = .Camera
imagePickerController.allowsEditing = false
imagePickerController.cameraDevice = .Front
imagePickerController.delegate = self
presentViewController(imagePickerController, animated: true, completion: nil)
}
else {
let alertVC = UIAlertController(
title: "No Camera",
message: "Sorry, this device has no camera",
preferredStyle: .Alert)
let okAction = UIAlertAction(
title: "OK",
style:.Default,
handler: nil)
alertVC.addAction(okAction)
presentViewController(alertVC,
animated: true,
completion: nil)
}
}

虽然这默认摄像头是前置的,但它仍然为用户提供了切换到后置摄像头的选择。有什么方法可以限制此功能?

提前致谢

最佳答案

如果您不想让用户享有 UIImagePickerController 提供的自由,就不要使用 UIImagePickerController。设计您自己的拍照界面(通过 AVFoundation),在其中完全掌控。

关于ios - 如何限制用户在 iOS 应用程序中使用后置摄像头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38493364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com