3

I'm able to change the text color of UIBarButtonItem using this code snippet (iOS 5+):

NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
[attributes setValue:[UIColor blackColor] forKey:UITextAttributeTextColor];   
[[UIBarButtonItem appearance] setTitleTextAttributes:attributes forState:UIControlStateNormal];

Unfortunately this does not affect UIBarButtonSystemItemAdd.

Is there a way to change the text color of the UIBarButtonSystemItemAdd ?

4

2 に答える 2

3

これを実現する方法がわかりません。システム UIBarButtonItem インスタンスはテキストではなく画像を使用するため、タイトル テキストの色を変更しても色を変更することはできません。ほとんどの場合、独自のバー ボタン アイテムを作成する必要があります。

于 2012-07-15T12:10:14.670 に答える