我无法设置 UINavigationController 的标题

发布于 2024-10-10 11:34:29 字数 327 浏览 2 评论 0原文

这是我的代码

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿哥们儿 2024-10-17 11:34:30

我认为 UINavigationController 正在使用当前正在查看的控制器的标题。因此,您必须正确设置 RootViewController 的标题,而不是设置 UINavigationController 的标题:

contacts.title = @"Select contact to call";

I think that the UINavigationController is using the title of the controller which it is currently viewing. So instead of setting the title of your UINavigationController, you have to set the title of your RootViewController correctly:

contacts.title = @"Select contact to call";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文