Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UINavigationController Interactive Pop Gesture Not Working?

So I have a navigation controller in my built for iOS 7 app. The titleView is visible, as well as the back button and navigation bar its self. For some reason, the interactive pop gesture (swipe from the left edge) isn't working. Nothing happens. When I log the gesture, it is not nil. Is there anything special I have to do to enable this functionality? What could cause it not to work?

like image 206
Aaron Wojnowski Avatar asked Sep 22 '13 16:09

Aaron Wojnowski


2 Answers

I have found that when using custom back buttons, the interactive pop gesture stops working (my take is that Apple cannot foresee how your custom back button will behave, so they disable the gesture).

To fix this, as other mentioned before, you can set the interactivePopGestureRecognizer.delegate property to nil.

In Swift, this can easily be done across your entire application by adding an extension for UINavigationController like this:

extension UINavigationController {      override public func viewDidLoad() {         super.viewDidLoad()         interactivePopGestureRecognizer?.delegate = nil     }  } 

Updated answer

Seems like setting the delegate to nil causes the app UI to freeze in some scenarios (eg. when the user swipes left or right on the top view controller of the navigation stack).

Because gestureRecognizerShouldBegin delegate method cannot be handled in an extension, subclassing UINavigationController seems like the best solution:

class NavigationController: UINavigationController, UIGestureRecognizerDelegate {      /// Custom back buttons disable the interactive pop animation     /// To enable it back we set the recognizer to `self`     override func viewDidLoad() {         super.viewDidLoad()         interactivePopGestureRecognizer?.delegate = self     }      func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {         return viewControllers.count > 1     }  } 
like image 158
Eneko Alonso Avatar answered Oct 06 '22 16:10

Eneko Alonso


Eh, looks like I just had to set the gesture delegate and implement the following:

-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {      return YES;  } 
like image 20
Aaron Wojnowski Avatar answered Oct 06 '22 15:10

Aaron Wojnowski