I have a touchesBegan
method in my AppDelegate
. I use it to detect taps in the status bar. I\'ve had it there for a long time and it\'s worked great. U
I had the same issue recently. It took my several hours to figured it out. I've created another UIWindow on top of the main window to show app notifications/alerts. For some reason it eats all the touch actions when using ios 13. The workaround of mine is that just disable user interaction on the top one. But that means you can't do any user interaction with notifications/alerts obviously.