I am trying to disable the back gesture for my view controller using the following set of code.
In FirstViewController.m, I\'m setting the delegate of <
FirstViewController.m
For only one view, I don't know the way... But I use the next code to disable fully the swipe gesture:
in your AppDelegate.m
if ([[UIDevice currentDevice].systemVersion floatValue] >= 7){ self.navigationController.interactivePopGestureRecognizer.enabled = NO; }