关于UITabBarController的设置(iOS 开发)

Posted 日月哥哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于UITabBarController的设置(iOS 开发)相关的知识,希望对你有一定的参考价值。

1.设置图片(选中以及未选中)

UITabBarItem *TuiJianItem=[[UITabBarItem alloc]initWithTitle:@"我的" image:[[UIImage imageNamed:@"index_bottom07_"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] selectedImage:[[UIImage imageNamed:@"index_bottom08_"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];

 2.设置选中状态字体颜色

    [tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:

                                        [UIFont fontWithName:@"Helvetica-Bold" size:10],

                                        NSFontAttributeName,[UIColor colorWithRed:153/255.0 green:153/255.0 blue:153/255.0 alpha:1],NSForegroundColorAttributeName,

                                        nil] forState:UIControlStateNormal];

3.常规设置

    UITabBarController *tabBar=[[UITabBarController alloc]init];

    t[email protected][_homeNav,_erShouNav,_orderNav,_tuiJianNav];

    tabBar.view.backgroundColor = [UIColor whiteColor];

    tabBar.selectedIndex = 0;//默认展示页

    tabBar.delegate=self;

 

以上是关于关于UITabBarController的设置(iOS 开发)的主要内容,如果未能解决你的问题,请参考以下文章

UITabbarController 设置视图

在推送的 UITabBarController 上设置徽章

UITabBarController 中的 UINavigationController,设置导航控制器标题

UITabBarController 中的测试方法正确设置标题

通过 UITabBarController 访问时如何设置 UITabBars 项目属性?

为 UITabBarController 子视图控制器设置相同的导航栏?