I\'m developping an app for iOS 4.2+. I subclassed my UINavigationController to insert two UIImageView and make the navigation bar look custom. Eve
UINavigationController
UIImageView
UIBarButtonItem *backButton = [UIBarButtonItem new]; [backButton setTitle:@"Back"]; [[self navigationItem] setBackBarButtonItem:backButton];
This code you have to mentioned in previous view controller then only it default back button came in next view controller.
Enjoy!!!