UINavigationBar - Set title programmatically?

前端 未结 11 1229
伪装坚强ぢ
伪装坚强ぢ 2020-12-24 04:24

I have a tab bar application with a different view on each tab. Each view has a UINavigationBar with title set on Interface Builder. I want to change the title based on a cl

11条回答
  •  有刺的猬
    2020-12-24 05:07

    You can also just set the title in the ViewDidLoad under your ViewController or TableViewController using

    _title = @"Title";
    

    or

    self.title = @"Title";
    

提交回复
热议问题