Sorry for the poor English :-(
Here I use xcode 5 and ios7, Can dnt change the color in the back button when you get after pushviewcontroller.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
ListViewController *viewList = [[ListViewController alloc] initWithNibName:@"ListViewController" bundle:nil];
[self.navigationController pushViewController: viewList animated:YES];
}
The user clicks on a cell, then a ListViewController will appear. The navigation bar on the right displays a pink color. but didn’t get the color change in the bar button. Please see the screenshot, I added the link below.

Can I change the back button on the navigation bar ?. Or do you need to add an image to the back button?
source
share