b2c信息网

您现在的位置是:首页 > 最新时事 > 正文

最新时事

ios7导航栏颜色(导航栏什么颜色好看)

hacker2022-06-30 07:22:15最新时事85
本文目录一览:1、ios怎样修改导航栏标题字体样式和颜色2、

本文目录一览:

ios怎样修改导航栏标题字体样式和颜色

iOS 5 以后 UINavigationController 可以 改变UINavigationBar导航条标题颜色和字体

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:

[UIColor colorWithRed:0 green:0.7 blue:0.8 alpha:1], UITextAttributeTextColor,

[UIColor colorWithRed:0 green:0.7 blue:0.8 alpha:1], UITextAttributeTextShadowColor,

[NSValue valueWithUIOffset:UIOffsetMake(0, 0)], UITextAttributeTextShadowOffset,

[UIFont fontWithName:@"Arial-Bold" size:0.0], UITextAttributeFont,

nil]];

其中 UITextAttributeTextColor和UITextAttributeFont 属性是文字颜色和字体

ios 设置导航栏颜色 写在哪

法一:(自定义视图的方法,一般人也会采用这样的方式)

就是在导航向上添加一个titleView,可以使用一个label,再设置label的背景颜色透明,字体什么的设置就很简单了。

//自定义标题视图

UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 44)];

titleLabel.backgroundColor = [UIColor grayColor];

titleLabel.font = [UIFont boldSystemFontOfSize:20];

titleLabel.textColor = [UIColor greenColor];

titleLabel.textAlignment = NSTextAlignmentCenter;

titleLabel.text = @"新闻";

self.navigationItem.titleView = titleLabel;

方法二:(在默认显示的标题中直接修改文件的大小和颜色也是可以的)

[self.navigationController.navigationBar setTitleTextAttributes:

@{NSFontAttributeName:[UIFont systemFontOfSize:19],

NSForegroundColorAttributeName:[UIColor redColor]}];

方式二相对于方式一而言更加简单方便

ios中怎样设置导航条背景色透明度

要设置透明度只需要修改A值。下面这行代码意思是修改导航栏的背景颜色,

//背景色修改

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageWithColor:[UIColor colorWithRGB:255 green:255 blue:255 alpha:1.0]] forBarMetrics:UIBarMetricsDefault];

根据RGBA来修改背景色

发表评论

评论列表

  • 假欢饮湿(2022-06-30 15:45:00)回复取消回复

    lor redColor]}];方式二相对于方式一而言更加简单方便ios中怎样设置导航条背景色透明度要设置透明度只需要修改A值。下面这行代码意思是修改导航栏的背景颜色,//背景色修改[self.navi

  • 假欢邮友(2022-06-30 15:49:04)回复取消回复

    本文目录一览:1、ios怎样修改导航栏标题字体样式和颜色2、ios 设置导航栏颜色 写在哪3、ios中怎样设置导航条背景色透明度ios怎样修改导航栏标题字体样式和颜色[editor-custom-image-fl

  • 假欢青朷(2022-06-30 10:25:11)回复取消回复

    本文目录一览:1、ios怎样修改导航栏标题字体样式和颜色2、ios 设置导航栏颜色 写在哪3、ios中怎样设置导航条背景色透明度ios怎样修改导航栏标题字体样式和颜色[editor-custom-image-flag]iOS 5 以后 UINav