If you push a VC from a VC which is following a scrollView, swipe gesture doesn't work. It freezes the app and then the app goes unstable and often needs to be killed and restarted.
I have already tried
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
if let navController = navigationController as? ScrollingNavigationController {
navController.stopFollowingScrollView()
}
}
If you push a VC from a VC which is following a scrollView, swipe gesture doesn't work. It freezes the app and then the app goes unstable and often needs to be killed and restarted.
I have already tried
But it doesn't work