美文网首页计算机技术一锅炖
iOS 7之后更改导航栏字体颜色几种方法

iOS 7之后更改导航栏字体颜色几种方法

作者: 1b3bd36d9d21 | 来源:发表于2016-07-15 17:45 被阅读61次

    岁数大了,记忆不行了,还是烂笔头靠谱,直接上代码,以备后期自己使用
    第一种:

        UILabel *title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 44)];
        title.text = @"全国小记者互动平台";
        title.font = kFont(18);
        title.textAlignment = NSTextAlignmentCenter;
        title.textColor = [UIColor whiteColor];
        // 给导航标题设置一个自定义View
        self.navigationItem.titleView = title;
    

    第二种 比较简单 推荐使用:

        // 直接获取导航栏唯一对象
        UINavigationBar *bar = [UINavigationBar appearance];
        // bar.barTintColor = [UIColor redColor];
        // 设置标题颜色字典
        NSDictionary *dictAttr = @{NSForegroundColorAttributeName:[UIColor whiteColor]};
        bar.titleTextAttributes = dictAttr;
    

    第三种 后期在补:

      Loading......
    

    相关文章

      网友评论

        本文标题:iOS 7之后更改导航栏字体颜色几种方法

        本文链接:https://www.haomeiwen.com/subject/ufiyjttx.html