UINavigationController's interactivePopGestureRecognizer broken on iOS 13.

Just noticed this. Made a quick sample project with a navigation controller that pushes a vc stack. interactivePopGestureRecognizer works when ran on iOS 12 but does not work on iOS 13.

Replies

I am seeing the same issue when running on iOS 13. For now I've played with:


navigationController.interactivePopGestureRecognizer?.delegate = self
 navigationController.interactivePopGestureRecognizer?.delegate = nil


but no luck.