You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In iPhone X and above I am facing this issue. when you select an image from the gallery and edit that image with any editing tool this happens and this navigation bar becomes unclickable. This happens in the demo app also.
I am testing in iOS 13 and iPhone X and above devices
The text was updated successfully, but these errors were encountered:
I have the same issue while using UIImagePickerController pushViewController method so I change the way to display the CLImageEditor by present it full screen. Worked for me
picker.dismiss(animated: false) {[weak self] in
guard let strongSelf = self,
let image = info[UIImagePickerController.InfoKey.originalImage] as? UIImage,
let editor = CLImageEditor(image: image) else {return}
editor.modalPresentationStyle = .fullScreen
strongSelf.present(editor, animated: true, completion: nil)
@quang-truong-le-ngo for some reason that isn't working for me. I've changed my UIImagePickerController and the CLImageEditor to display full screen but I'm still seeing the issue above. Has anyone else found a different solution?
In iPhone X and above I am facing this issue. when you select an image from the gallery and edit that image with any editing tool this happens and this navigation bar becomes unclickable. This happens in the demo app also.
I am testing in iOS 13 and iPhone X and above devices
The text was updated successfully, but these errors were encountered: