I've a problem to drag and drop images with the new presentation style automatic.
The images are subclass of UIImageView
overriding func touchesBegan, touchesMoved and touchesEnded. I've also tried to put self.superview?.isUserInteractionEnabled = false
inside touch began to disable the touch of the view.
If I set segue.destination.modalPresentationStyle = .fullScreen
it works, but I would like to have the same behavior also with the Automatic style.
Normal behavior:
any idea?