次のコードを使用して、ツールバーにアクション ボタンと作成ボタンをプログラムで追加しています。
UIBarButtonItem *compose = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:7 target:self action:@selector(userWritesHaiku)];
compose.style=UIBarButtonItemStyleBordered;
UIBarButtonItem *action = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:9 target:self action:@selector(userWritesHaiku)];
action.style=UIBarButtonItemStyleBordered;
(そして、それらを配列に入れてツールバーに割り当てます。)
しかし、それは私に次の出力を与えます:
私が欲しいのは、次のものです。Interface Builder で作成できますが、Interface Builder を使用していません。
後者の画像をプログラムで取得するにはどうすればよいですか?