我已将导航控制器添加到ViewController,然后我将标题添加到导航项目,它在xcode中显示该标题但是当我运行程序时标题不可见。我在viewDidLoad方法
中尝试了这段代码[[self navigationItem] setTitle:@"My Title"];
但它也无法正常工作,即使我放了导航栏按钮,它也是不可见的。有人请帮帮我。 提前致谢
答案 0 :(得分:3)
而不是
[[self navigationItem] setTitle:@"My Title"];
使用:
self.title=@"your text here";
答案 1 :(得分:0)
self.title = @"add title here";