设置导航栏的背景颜色及属性

来源:互联网 发布:淘宝卖家怎么快速升心 编辑:程序博客网 时间:2024/06/07 04:41

导航栏的背景属性

self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:0.988 green:0.306 blue:0.039 alpha:1.000];//背景颜色    self.navigationController.navigationBar.tintColor = [UIColor colorWithWhite:0.298 alpha:1.000];//导航栏的按钮颜色    [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor colorWithWhite:0.298 alpha:1.000]}];//导航栏字体颜色    self.navigationController.navigationBar.translucent = YES;
[self.navigationController.navigationBar setBackgroundColor:[UIColor colorWithRed:0.988 green:0.306 blue:0.039 alpha:1.000]]; // 设置导航栏背景颜色
0 0