Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two Navigation bar overlaps while editing selected image #232

Open
Milap-Kundalia opened this issue Oct 17, 2019 · 3 comments
Open

Two Navigation bar overlaps while editing selected image #232

Milap-Kundalia opened this issue Oct 17, 2019 · 3 comments

Comments

@Milap-Kundalia
Copy link

Simulator Screen Shot - iPhone 11 Pro Max - 2019-10-17 at 09 42 07
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

@quang-truong-le-ngo
Copy link

quang-truong-le-ngo commented Jan 31, 2020

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)

@EpicDraws
Copy link

@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?

@EpicDraws
Copy link

The fix from #220 worked for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants