0

我用橙色将我的导航栏着色为:

navigationController.navigationBar.tintColor = [UIColor colorWithRed:0.88 green:0.52 blue:0.27 alpha:1];

一切正常,每个按钮都像条一样橙色,但是当 ic 来到自定义右侧项目菜单时,它显示为蓝色。这是截图:http: //img146.imageshack.us/img146/5605/schermata20091202a14565.png

这是右侧按钮的代码:

UIView *container = [[UIView alloc] init];
UIToolbar *tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 80, 45)];

NSMutableArray *buttons = [[NSMutableArray alloc] initWithCapacity:2];

UIBarButtonItem *bi = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addGadget:)];
bi.style = UIBarButtonItemStyleBordered;
[buttons addObject:bi];
[bi release];

bi = [[UIBarButtonItem alloc]
initWithImage:[UIImage imageNamed:@"less.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(setEditing:)];
[buttons addObject:bi];
[bi release];

[tools setItems:buttons animated:NO];
[buttons release];

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:tools];
[tools release];

如何让一切都变成橙色?

4

1 回答 1

1

您应该将tintColor对象UIToolbar的 设置为与 的相同UINavigationBar

请注意, aUIToolbar与 aUINavigationBar不同,背景渐变/颜色有点不同。尝试将 UIToolbar 的 backgroundColor 设置为+[UIColor clearColor]

此外,您甚至可能不需要 container UIView,因为UIToolbar它是 的子类UIView,因此您可以单独将其用作 customView 。

于 2009-12-02T14:15:45.007 回答