PopupWindow icon indicating copy to clipboard operation
PopupWindow copied to clipboard

Unidentified view on top of popup view if rendered after camera image picker dismissal

Open cha777 opened this issue 5 years ago • 1 comments

I tried showing login screen popup provided in the demo after a the dismissal of camera imagepicker view. It shows 2 unidentified views on top of the popup view causing to obstruct interaction with the popup view. This happens only if i tried to show the popup after camera view dismissal

Device: iPhone XS iOS: 13.5.1

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    let imagePickerVC = UIImagePickerController()
    imagePickerVC.delegate = self
    magePickerVC.sourceType = .camera
    imagePickerVC.videoMaximumDuration = 10
    imagePickerVC.mediaTypes = [String(kUTTypeMovie), String(kUTTypeImage)]
    present(imagePickerVC, animated: true)
}

func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
    dismiss(animated: true) {
        PopupWindowManager.shared.changeKeyWindow(rootViewController: LoginPopupViewController())
    }
}
Screenshot 2020-06-27 at 00 36 31

cha777 avatar Jun 26 '20 19:06 cha777

Good luck getting an answer, he never responds.

dpalme3160 avatar Oct 05 '20 00:10 dpalme3160