UINavigationController - 如果视图位于 UIScrollView 内部,则设置标题不起作用

发布于 2024-11-05 11:54:00 字数 577 浏览 0 评论 0原文

我的 AppDelegate 中有一个名为 navControllerUINavigationController。 通常,我可以使用设置它的标题

self.navController.title = @"My title";

但现在我有一个带有 UIScrollView 的视图,并且我在此滚动视图子视图中添加:

[myScrollView addSubview:myController.view];

在这些带有 ViewController 的子视图中,我尝试在 < code>viewDidLoad 和 viewWillAppear,但没有成功,标题在屏幕中保持为空。 UIScrollView 用于与 UIPageControl 结合在页面之间水平滑动。

但是在我的情况下如何设置导航控制器的标题呢? (每次页面更改时,我都想将标题更改为我在关联视图控制器中设置的标题)

最好的问候蒂姆。

I have in my AppDelegate a UINavigationController called navController.
Normally, I can set the title of it with

self.navController.title = @"My title";

But now I have a view with a UIScrollView and I add in this scroll view subviews:

[myScrollView addSubview:myController.view];

In these subviews with ViewControllers I try to do to set the title in viewDidLoad and viewWillAppear, but without success, the title remains empty in the screen.
The UIScrollView is used to swipe between the pages horizontally combined with a UIPageControl.

But how can I set the title of the navigation controller in my case? (Every page change, I want to change the title to the title I set in the associated view controller)

Best Regards Tim.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沫雨熙 2024-11-12 11:54:00

我通常只做 self.title = @"title";

I usually do only self.title = @"title";

岁月打碎记忆 2024-11-12 11:54:00

您可以像这样获得指向导航控制器的指针

self.navigationController.title = @"title";

希望这会有所帮助。

You can get a pointer to the nav controller like this

self.navigationController.title = @"title";

Hope this helps.

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