Volume key is not working after updating to iOS 14.
Especially Getting image with UIImagePicker.
If I want to get normal condition, then I'll restart my device.
Check my code for presenting UIImagePicker under.
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.camera) {
let imagePicker = UIImagePickerController()
imagePicker.sourceType = UIImagePickerControllerSourceType.camera
imagePicker.modalPresentationStyle = .overCurrentContext
imagePicker.allowsEditing = false
if imagePicker.delegate == nil {
imagePicker.delegate = self
}
self.navigationController?.present(imagePicker, animated: true, completion: nil)
}