Thursday, November 25, 2010

UINavigationController back button custom text

To Change the back button text we need to give in viewDidApper. If you give in viewDidLoad it not work.

- (void)viewDidAppear:(BOOL)animated {
self.navigationController.navigationBar.backItem.title=@"Back";
}