UIBarItem 的设置

常见设置如下

#import "TRTabBarController.h"

@interface TRTabBarController ()<TRtabBarDelegate>

@end

@implementation TRTabBarController

   //设置选中后的背景图
    [self.tabBar setSelectionIndicatorImage:[UIImage imageNamed:@"delete_btn"]];
   

//遍历tabVarControoler 中的子视图,来改变样式
    for (UIViewController*vc in self.viewControllers) {
    //读取设置过的选中图片
        vc.tabBarItem.selectedImage=[vc.tabBarItem.selectedImage imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
        //设置vc的tabbarItem的文字样式
        UITabBarItem*baritem=vc.tabBarItem;
        //设置item的文字位置
        [baritem setTitlePositionAdjustment:UIOffsetMake(0, -2)];
        //字体变大
       NSMutableDictionary *nomalattributes=[NSMutableDictionary dictionary];
        nomalattributes[NSFontAttributeName]=[UIFont systemFontOfSize:13];
        nomalattributes[NSForegroundColorAttributeName]=[UIColor colorWithRed:128/255.0 green:128/255.0 blue:128/255.0 alpha:1];
        [baritem setTitleTextAttributes:nomalattributes forState:UIControlStateNormal];
        
        
        NSMutableDictionary *selectedAttributes2=[NSMutableDictionary dictionary];
        selectedAttributes2[NSFontAttributeName]=[UIFont systemFontOfSize:13];
       selectedAttributes2[NSForegroundColorAttributeName]=[UIColor colorWithRed:8/255.0 green:232/255.0 blue:13/255.0 alpha:1];
        [baritem setTitleTextAttributes: selectedAttributes2 forState:UIControlStateSelected];

转载于:https://www.cnblogs.com/zhao-jie-li/p/5061136.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值