It seems like I can't edit a certain area(mostly top/bottom part) if I use the sourceType == .camera.
let picker = UIImagePickerController()
picker.sourceType = .camera
picker.delegate = self
picker.allowsEditing = true
present(picker, animated: true)
With the code above, after I take a picture, it goes to the edit screen. I can zoom and move the picture to crop, but I can't really move to the top/bottom edge of the picture.
Tested on iOS 16.3.1 on iPhone13 mini/Pro Max. Is it a know issue or I missed something?
class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
}