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 interac
Look at this response and comments. All you have to do is set your navigation controller's interactive pop gesture recognizer's delegate to nil
:
self.navigationController.interactivePopGestureRecognizer.delegate = nil;
Setting it to a casted self to id
also works because all methods in the protocol are optional, but I think setting the delegate to nil
is more appropriate in this case.