我无法设置 UINavigationController 的标题
这是我的代码
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]];
我无法看到 UINavigationController 的标题请帮助
Here is my code
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]];
I am not able to se the title of UINavigationController please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 UINavigationController 正在使用当前正在查看的控制器的标题。因此,您必须正确设置
RootViewController
的标题,而不是设置UINavigationController
的标题:I think that the
UINavigationController
is using the title of the controller which it is currently viewing. So instead of setting the title of yourUINavigationController
, you have to set the title of yourRootViewController
correctly: