この黄色いボタンの色合いを灰色に設定するにはどうすればよいですか?私は画像を追加しようとしましたが、運がありませんでした。ここでナビゲーションバーのボタンの色 - iPhone
はスクリーンショットです:ここでは
は私の現在のコードです:
- (id)initWithStyle:(UITableViewStyle)style {
if (self = [super initWithStyle:style]) {
UIBarButtonItem *addButton = [[UIBarButtonItem alloc]
initWithTitle:NSLocalizedString(@"Settings", @"")
style:UIBarButtonItemStyleDone
target:self
action:@selector(GoToSettings)];
[addButton setImage:[[UIImage imageNamed:@"bg_table.png"] retain]];
self.navigationItem.rightBarButtonItem = addButton;
self.navigationItem.hidesBackButton = TRUE;
self.view.backgroundColor = [UIColor blackColor];
}
return self;
}
グレーなどの色を付けることはできますか? – Mladen
addButton.tintColor = [UIColor grayColor]; – charliehorse55