質問

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

役に立ちましたか?

解決

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);
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top