My application has a navigation controller and I don\'t want any animation in it :
to prevent an animation when pushing a view, it\'s easy, via the pushView
I just answered another related question that describes how to easily create a custom back button that replicates the look of the standard iOS (iPhone / iPad) UI back bar button item but allows other functions to be added. As recommended in falconcreek's answer, in the backButtonPressed
method, just add:
[[self navigationController] popViewControllerAnimated:NO];