I'm doing an application where I want the user to be able to use swipe gestures to push and pop view controllers. I will be using a swipe gesture recogniser to achieve this. My question is, is there any way I could implement the recognisers globally as opposed to implementing it in every single view controller? Thanks.
You could write a category, and apply it to UIViewController. Item 11 here clearly explains how to do that.