定制导航条的颜色

self.navigationController.navigationBar.barTintColor =[UIColor colorWithRed:70/255.0green:193/255.0 blue:14/255.0 alpha:1.0];

// 设置导航条的透明

//    [self setSelfNavigationBarTranslucent];

//- (void)setSelfNavigationBarTranslucent

//{

//    if (self.navigationController.navigationBar.translucent) {

//

//        self.navigationController.navigationBar.translucent = NO;

//    }else{

//        return;

//    }

//}

//    UINavigationBar *bar = [UINavigationBar appearance];

//    bar.barTintColor = BCJCColor(249, 104, 69);

//    [self.navigationController.navigationBar setBarTintColor:BCJCColor(255, 127, 80)];

//    self.navigationController.navigationBar

//    self.navigationController.navigationBarHidden = NO;

//    self.navigationController.navigationBar.backgroundColor = BCJCColor(249, 104, 69);

//    self.navigationController.navigationItem.leftItemsSupplementBackButton = YES;

导航条的文字颜色

[bar setTitleTextAttributes:@{NSFontAttributeName : [UIFontboldSystemFontOfSize:20], NSForegroundColorAttributeName : [UIColor whiteColor]}];

时间: 2024-10-22 02:39:12

定制导航条的颜色的相关文章

UINavigationController改变UINavigationBar导航条标题颜色跟字体

UINavigationController改变UINavigationBar导航条标题颜色和字体 iOS 5 以后 UINavigationController 可以 改变UINavigationBar导航条标题颜色和字体 [self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: [UIColor colorWithRed:0 green

自定义导航条的颜色

才发现,导航条的颜色是可以进行修改的. #import "AppDelegate.h" #import "RootViewController.h" @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWin

导航条的自定义:背景颜色设置,按钮标题图片设置,图片坐标修改

一.修改系统原生导航条 修改导航条背景颜色 self.navigationController.navigationBar.barTintColor = [UIColor colorWithHexString:@"#2295f2"]; 自定义导航条按钮 self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:@"btn-menu-h&q

导航条颜色

//导航条背景颜色 self.navigationController.navigationBar.barTintColor = [UIColor blueColor]; //导航条上面控件颜色 self.navigationController.navigationBar.tintColor = [UIColor whiteColor]; //设置系统导航条的title字体大小和颜色 [self.navigationController.navigationBar setTitleTextAt

iOS中的导航条(UISegmentedControl)的基本使用(界面中传值的3中方法)

Appdelegate中 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; //1.创建单视图控制器对象, FirstViewControll

导航条NavigationControl的一些属性设置

/** * 配置公共的属性,该属性作用于所有的导航条界面; */ - (void)configureConmmonPropety { //1.设置导航条的颜色 self.navigationController.navigationBar.barTintColor = [UIColor yellowColor]; //2.关闭导航条的毛玻璃效果. self.navigationController.navigationBar.translucent = NO; //3.隐藏导航条 self.na

Bootstrap导航条

前面的话 导航条(navbar)和导航(nav),就相差一个字,多了一个“条”字.其实在Bootstrap框架中他们还是明显的区别.在导航条(navbar)中有一个背景色.而且导航条可以是纯链接(类似导航),也可以是表单,还有就是表单和导航一起结合等多种形式.本文将详细介绍Bootstrap导航条 基础导航条 在Bootstrap框架中,导航条和导航从外观上差别不是太多,但在实际使用中导航条要比导航复杂得多. 导航条是在应用或网站中作为导航页头的响应式基础组件.它们在移动设备上可以折叠(并且可开

Bootstarp学习(十一)导航条

导航条基础 导航条(navbar)和上一节介绍的导航(nav),就相差一个字,多了一个"条"字.其实在Bootstrap框架中他们还是明显的区别.在导航条(navbar)中有一个背景色.而且导航条可以是纯链接(类似导航),也可以是表单,还有就是表单和导航一起结合等多种形式.在这一节中将一起探讨Bootstrap框架中导航条的使用. 导航条和导航一样,在Bootstrap框架中是一个独立组件,所以你也可以根据自己的需求使用不同的版本: LESS版本:对应的源文件navbar.less S

配置导航条

?/* APPDelegate */ // 设置白色导航条 - (UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; } ?/* Controller */ //修该导航条上显示文字的大小(针对于所有界面) NSDictionary *dic = @{NSForegroundColorAttributeName:[UIColor cyanColor], NSFontAttributeNam