0

I have an interface laid out in storyboard, and one of my controllers gets pushed into the ... More... section of the tab bar controller. I cannot seem to find a way to set it's navigation item's title. It is set up in the storyboard, but does not appear.

Here's the structure Tabbar > relationship to Navigation controller> relationship to view controller

self.navigationItem.title = @"DOES NOT WORK";

    UINavigationBar *moreNavigationBar = self.tabBarController.moreNavigationController. navigationBar;
    moreNavigationBar.topItem.title = @"SETS THE BACK BUTTON TITLE";

What do I need to do to set text in the empty space on the attached screenshot?

Tab bar more item title

4

2 に答える 2

1

タブ バー内にタイトルを非表示にするカスタム コードがない限り、表示されているビュー コントローラーtitleのプロパティを変更するだけで済みます。これは、ストーリーボード エディター内で簡単に実行できます。

プロパティ編

于 2012-10-09T23:46:22.380 に答える
0

これをプログラムで実行したい場合はviewDidLoadviewControllerasに次を追加するだけです。

self.title = @"title goes here";
于 2012-10-09T23:58:35.240 に答える