Question

does anyone know how to delete the words above path in the back button? In this case, how could I delete the word "UNIGO!", in iOS7?

I would leave only the direction indicator, without the written

Rory

enter image description here

Was it helpful?

Solution

Set the title to be a space character before pushing your friend search view controller.

self.title = @" ";
[self.navigationController pushViewController:friendSearchViewControler
                                     animated:YES];

And in -viewWillAppear: set the title to the actual title!

-(void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    self.title = NSLocalizedString(@"UniGo!", nil);
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top