So I\'m noticing all of my views are receiving the gesture to go back (pop a view) when the user swipes on the very left side of the screen (in either orientation) (
Adding to Gabriele's Solution.
To support any iOS before iOS 7 you will need to wrap this code with this:
if([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}
This will stop the App crashing in iOS 6 and iOS 5 for missing selector.