码迷,mamicode.com
首页 > 其他好文 > 详细

NavigationBar 背景颜色,字体颜色

时间:2014-10-15 19:15:11      阅读:645      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   sp   div   

// 设置状态栏颜色
    [application setStatusBarStyle:UIStatusBarStyleLightContent];
    
    // 设置导航栏
    [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
    
    if (kIS_IOS7) {
        [[UINavigationBar appearance] setBarTintColor:KNavibarColor];
    } else {
        [[UINavigationBar appearance] setBackgroundImage:[UIImage Color:KNavibarColor Size:CGSizeMake(0.5, 44)]
                                           forBarMetrics:UIBarMetricsDefault];
    }
    
    NSDictionary *textTitleOptions = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, [UIColor whiteColor], UITextAttributeTextShadowColor, nil];
    [[UINavigationBar appearance] setTitleTextAttributes:textTitleOptions];

 

NavigationBar 背景颜色,字体颜色

标签:style   blog   color   io   os   ar   for   sp   div   

原文地址:http://www.cnblogs.com/lihaibo-Leao/p/4026671.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!