gpt4 book ai didi

objective-c - 在 xcode 中设置导航栏的标题

转载 作者:可可西里 更新时间:2023-11-01 03:02:34 25 4
gpt4 key购买 nike

我以编程方式创建了一个导航 Controller ,

        //Creating AddViewController Object
addViewController *addView = [[addViewController alloc]init];
UINavigationController *addViewControl = [[UINavigationController alloc]init];

[addViewControl.view addSubview:addView.view];

[self presentModalViewController:addViewControl animated:YES];

但是当我在 addViewController 类中添加 self.title = @"Title"时。它没有显示。

我尝试了以下,

self.navigationItem.title = @"Title";

self.navigationController.navigationBar.topItem.title = @"Title";

但它不显示标题。

我认为设置标签是可能的。但上面的是直接方法。

任何想法..

最佳答案

您应该将标题分配给 addView,例如 addView.title = @"Title";

另一种方法是 self.navigationItem.title = @"Title";

关于objective-c - 在 xcode 中设置导航栏的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10124574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com