我在相机叠加层中以编程方式创建 UIToolbar。我想改变它的颜色,但它不起作用:
UIToolbar *toolbar = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 436, 320, 44)];
[toolbar setBarStyle:UIBarStyleDefault];
toolbar.tintColor = [UIColor colorWithRed:226.0 green:226.0 blue:226.0 alpha:0.0];
颜色不对。我错过了什么?