如何为UIImagePickerController添加一些选项

时间:2017-05-01 08:37:35

标签: ios swift uiimagepickercontroller

有可能为imagePicker sourceType添加几个选项吗?

imagePicker.sourceType = UIImagePickerControllerSourceType.camera
imagePicker.allowsEditing = true
self.present(imagePicker, animated: true, completion: nil)

enter image description here

2 个答案:

答案 0 :(得分:0)

这些选项特定于相机应用,无法通过API使用。

您应该在http://bugreport.apple.com提交增强请求。

答案 1 :(得分:0)

imagePicker.showsCameraControls = true.  // use this
imagePicker.modalPresentationStyle = .FullScreen

如果您创建自己的自定义,则可以创建自定义视图

 imagePicker.cameraOverlayView = YourView