문제

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