Skip to content

Instantly share code, notes, and snippets.

@andrewconlan
Last active February 26, 2018 15:28
Show Gist options
  • Save andrewconlan/0f8b64cd212580237c2e to your computer and use it in GitHub Desktop.
Save andrewconlan/0f8b64cd212580237c2e to your computer and use it in GitHub Desktop.
Fix Broken Swipe to Go Back With Hidden Navigation Bar
if let navigationController = navigationController, interactivePopGestureRecognizer = navigationController.interactivePopGestureRecognizer {
navigationController.setNavigationBarHidden(true, animated: true)
interactivePopGestureRecognizer.delegate = self
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment