I have a view controller which is nested within a UINavigationController.
UINavigationController
I have implemented the iOS 7 interactivePopGestureRecognizer to enable the user to
Set your UIViewController subclass as the gestureRecognizer's delegate:
self.navigationController.interactivePopGestureRecognizer.delegate = self;
That's it!