0

ナビゲーション バーのタイトルとしてプレーン テキスト ラベルを使用する UIBarButtonItem が必要です。どうすればこれを達成できますか? 私のコードは現在次のようになっています。

UIBarButtonItem *titleButton = [[UIBarButtonItem alloc] initWithTitle:@"CustomTitle" style:UIBarButtonItemStylePlain target:self action:@selector(titleClick)];
UIView *customTitleView = [[UIView alloc] initWithFrame:self.navigationItem.titleView.frame];
//??? now what
self.navigationItem.titleView = customTitleView;

では、この UIBarButtonItem アイテムをプログラムで customTitleView に追加するにはどうすればよいでしょうか? たぶん customTitleView は不要な中間ステップですか?

外観を左右のバーボタンアイテムに合わせたいので、UIBarButtonアイテムを使用したいと思います。ただし、どうしても必要な場合は、カスタムの UIButton と画像を使用できます。

4

0 に答える 0