i create a tableViewController in this way:
myTableViewController *tableController = [[[myTableViewController alloc] initWithNibName:@"myTableViewController" bundle:nil] autorelease];
// Setto il pulsante per tornare indietro
UIBarButtonItem *tempButton = [[UIBarButtonItem alloc] init];
tempButton.title = @"Back";
self.navigationItem.backBarButtonItem = tempButton;
[tempButton release];
[self.navigationController pushViewController:tableController animated:NO];
then in the tableviewcontroller, making self.navigationItem.BackBarButtonItem.Title = ... it does'nt happen anything, i've seen that the backbutton is = null.
How can i do? i've tried cutting off the creation of button in first code but it's the same.