UIBarButtonItemを、UIToolBarに載せるとことによって、UIToolBar上でいろいろな情報を表示することが出来ますね。Label的に使用したいときは、タップしても何も反応しない様に、Disabledにする必要がありますが、そうすると、文字のテキストの色が変わってしまいます。
これを、きれいに表示するための方法です。
このように設定する方法を記述します。
iOS5で、追加された、setTitleTextAttributesメソッドを使用します。
-(void) viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
for (UIBarButtonItem* item in _toolBarBottom.items) {
[item setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor, nil] forState:UIControlStateDisabled];
[item setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,[UIFont systemFontOfSize:16],UITextAttributeFont, nil] forState:UIControlStateNormal];
}
}
ポイントは、FontSizeは、UIControlStateDisabledに設定しても効果がないので、UIControlStateNormalに設定する必要があるという事です。iOS5は細かい設定が自由に聞く様になっているので便利になっていますね。