I am having a weird issue with a pushed view controller not taking my previous view controller title and using it as the back button title.
Playing around with it to try to get it to work I got the below code working and the other not working. The self.team.name is a little longer then back but it always defaults to "Back". Any clue why one works and the other doesnt?
Doesnt Work
-(void)viewWillDisappear:(BOOL)animated {
self.title = self.team.name;
}
Works
-(void)viewWillDisappear:(BOOL)animated {
self.title = @"back";
}