首页 > 其他 > 详细

UITabBarController,UITabBarItem设置

时间:2015-01-14 15:32:36      阅读:263      评论:0      收藏:0      [点我收藏+]

self.tabBarController = [[UITabBarController alloc] init];

    

    HomeViewController *homeVC = [[HomeViewController alloc] init];

    UINavigationController *nav1 = [[UINavigationController alloc] initWithRootViewController:homeVC];

    UITabBarItem *bar1 = [[UITabBarItem alloc]initWithTitle:@"首页" image:[UIImage imageNamed:@"tab_home"] tag:101];

    //设置选中后的背景图片

    [bar1 setSelectedImage:[UIImage imageNamed:@"tab_home_select"]];

    //bar上的字体向上移4个像素。

    nav1.tabBarItem.titlePositionAdjustment = UIOffsetMake(0, -4);

    nav1.tabBarItem = bar1;


//设置背景图片

        [[UITabBar appearancesetBackgroundImage:[UIImage imageNamed:@"tab_bacgground"]];

 if (IOSSystemVersion>=7) {

        //设置选中后bar的颜色,图片和字体都改变

       [[UITabBar appearance]setTintColor:COLOR_HEX_RGB(0xff783a)];

    }else

    {

//         [[UITabBar appearance]  setBackgroundImage:[UIImage imageNamed:@"tab_bacgground"]];

        //设置选中后字体的颜色,低版本ios

         [[UITabBarItem appearance] setTitleTextAttributes:  [NSDictionary dictionaryWithObjectsAndKeys:COLOR_HEX_RGB(0xff6600),UITextAttributeTextColor,nil]forState:UIControlStateSelected];

    }


UITabBarController,UITabBarItem设置

原文:http://blog.csdn.net/xiao562994291/article/details/42710291

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!