这是我的代码
navigator=[[UINavigationController alloc]initWithRootViewController:contacts];
//navigator.title=@"Select contact to call";
navigator.title=@"Select the number to call";
[self.navigator setDelegate:self];
[window addSubview:[navigator view]];
我无法看到导航控制器的标题,请帮助
答案 0 :(得分:1)
我认为UINavigationController
正在使用它当前正在查看的控制器的标题。因此,您必须正确设置UINavigationController
的标题,而不是设置RootViewController
的标题:
contacts.title = @"Select contact to call";