iOS 顶部导航栏字体、颜色 底部tabbar颜色

来源:互联网 发布:whirlpool算法 编辑:程序博客网 时间:2024/05/23 02:06

appdelegate:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    

    

    //设置naigationbar背景颜色和字体颜色 顶部导航栏

    [[UINavigationBarappearance]setBarTintColor:[UIColor redColor]];

    [[UINavigationBarappearance]setTintColor:[UIColorwhiteColor]];

    [[UINavigationBarappearance]setTitleTextAttributes:@{NSFontAttributeName:[UIFontboldSystemFontOfSize:28],NSForegroundColorAttributeName:[UIColorwhiteColor]}];

    [application setStatusBarStyle:UIStatusBarStyleLightContent];


//底部tabbar颜色

[[UITabBarappearance]setTintColor:[UIColor redColor]];


    // Override point for customization after application launch.

    return YES;

}


0 0
原创粉丝点击