zoukankan      html  css  js  c++  java
  • UINavigationController改变UINavigationBar导航条标题颜色跟字体

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

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

    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 属性是文字颜色和字体

  • 相关阅读:
    vue中的组件传值
    Object中defineProperty数据描述
    promiseall的使用场景
    babel安装及使用
    checkbox属性checked="checked"已有,但却不显示打勾的解决办法
    【转载】表单验证<AngularJs>
    CSS3 :nth-child()伪类选择器
    【转载】浏览器加载和渲染html的顺序
    css制作的61种图像
    网站链接样式设置
  • 原文地址:https://www.cnblogs.com/liumu/p/5339421.html
Copyright © 2011-2022 走看看