美文网首页征服iOS
设置 NavigationBar title 字体大小 颜色

设置 NavigationBar title 字体大小 颜色

作者: dymost | 来源:发表于2016-04-22 11:23 被阅读4041次
    // 属性参数在 NSAttributedString.h 文件中
    //这里我们设置的是颜色,字体大小,还可以设置其他,具体可以参见api
    UIColor * color = [UIColor whiteColor];
    UIFont *font = [UIFont systemFontOfSize:19];
    
    NSMutableDictionary *dict=[NSMutableDictionary dictionary];
    [dict setObject:color forKey:NSForegroundColorAttributeName];
    [dict setObject:font forKey:NSFontAttributeName];
    
    UINavigationBar *bar = [UINavigationBar appearance];
    bar.titleTextAttributes = dict;

    相关文章

      网友评论

        本文标题:设置 NavigationBar title 字体大小 颜色

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