iOS --UITabBarController

本章知识点梳理

  • 1.设置UITabBarItem 图片不渲染
  • 2.自定义tabBar 与 不自定义tabBar 多种方式实现
  • 3.tabBar主题
  • 4.自定义UITabBarController,添加所有子控制器

1 、设置UITabBarItem 图片不渲染

  • 代码实现


    Snip20150901_5.png
  • 系统设置实现


    iOS --UITabBarController_第1张图片
    Snip20150901_6.png

2、自定义tabbar

Snip20151026_14.png

2.1 思路分析

需求:点击中间按钮,modal方式弹出一个控制器
  • 方案一:

    • 设置UITabController设置5个子控制器,然后将 中间按钮添加到UITabBar 中间
      • 方案:不佳,因为这样可能按钮会先添加,而被UITabBar盖着了,监听不到按钮事件,我们想让按钮后添加(UITabBar添加后:ViewWillAppear方法中),但是还是太麻烦,你设置了5个控制器这样浪费一个控制器。
  • 方案二:丢弃系统自带的UITabBar,而使用我们自定义的UITabBar,继承UITabBar,使用KVC替换

    • 注意:
      • 中间“加号按钮”,采用UIButton,而不能采用UITabBarButton
        • 按照现在的需求,我们不能使用 UITabBarButton,而选择使用UIButton,因为TabBar的UITabBarButton只能有一个选中,其他将取消选中,但是我们想实现,点击“加号”不影响UITabBarButton的选中状态,而且UITabBarButton是上图下文字,不符合我们现在的需求。
      • 系统自带的tabBar是只读的,不能直接赋值,KVC方式替换只有
      • UITabBarButton系统是不对我们开放的,通过以下两种方式,我们可以判断是否是UITabBarButton类型


        ![Snip20150901_27.png](http://upload-images.jianshu.io/upload_images/831339-1c873b9398247534.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    • 步骤:
      • 在自定义的UITabBarController中,使用KVC,进行设置替换系统自带的TabBar,
      • 然后我们就可以自定义的TabBar的initWithFrame:方法中添加中间“加号按钮”,
      • 重写LayoutSubViews方法布局子控件=》布局UITabBarButton(TabBar每一项)、加号按钮。
// 1. 在自定义UITabBarController控制器中,KVC方式替换系统TabBar

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self setValue:[[JPTabBar alloc] init] forKeyPath:@"tabBar"];
// 2. 自定义TabBar

#import "JPTabBar.h"
#import "JPPublishViewController.h"

@interface JPTabBar()
/** 发布按钮 */
@property (nonatomic, weak) UIButton *publishButton;
@end

@implementation JPTabBar

- (instancetype)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame]) {
        // 设置背景图片
        self.backgroundImage = [UIImage imageNamed:@"tabbar-light"];
        
        // 添加发布按钮
        UIButton *publishButton = [UIButton buttonWithType:UIButtonTypeCustom];
        [publishButton setBackgroundImage:[UIImage imageNamed:@"tabBar_publish_icon"] forState:UIControlStateNormal];
        [publishButton setBackgroundImage:[UIImage imageNamed:@"tabBar_publish_click_icon"] forState:UIControlStateHighlighted];
        [publishButton sizeToFit];
        [publishButton addTarget:self action:@selector(publishClick) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:publishButton];
        self.publishButton = publishButton;
    }
    return self;
}

- (void)publishClick
{
    JPPublishViewController *publish = [[JPPublishViewController alloc] init];
    [self.window.rootViewController presentViewController:publish animated:NO completion:nil];
}

/**
 * 布局子控件
 */
- (void)layoutSubviews
{
    [super layoutSubviews];
    
    // tabBar的尺寸
    CGFloat width = self.width;
    CGFloat height = self.height;
    
    // 设置发布按钮的位置
    self.publishButton.center = CGPointMake(width * 0.5, height * 0.5);
    
    // 按钮索引
    int index = 0;
    
    // 按钮的尺寸
    CGFloat tabBarButtonW = width / 5;
    CGFloat tabBarButtonH = height;
    CGFloat tabBarButtonY = 0;
    
    // 设置4个TabBarButton的frame
    for (UIView *tabBarButton in self.subviews) {
        if (![NSStringFromClass(tabBarButton.class) isEqualToString:@"UITabBarButton"]) continue;
        
        // 计算按钮的X值
        CGFloat tabBarButtonX = index * tabBarButtonW;
        if (index >= 2) { // 给后面2个button增加一个宽度的X值
            tabBarButtonX += tabBarButtonW;
        }
   
        // 设置按钮的frame
        tabBarButton.frame = CGRectMake(tabBarButtonX, tabBarButtonY, tabBarButtonW, tabBarButtonH); 
        // 增加索引
        index++;
    }
}
@end
  • 方案三
    • 完全自定义,创建一个类继承UIView,里面添加5个按钮,然后布局按钮位置,然后显示在系统的tabbar的上面,覆盖在上面,因为系统的没有了,直接将其移除即可。
    • 至于如何监听按钮点击,我们可以给按钮绑定tag值,然后点击按钮事件就可以通过按钮的tag来确定点击了第几个按钮->来切换对应的控制器。
    • 当然切换控制器还要拿到tabBarController,是的,也有多种方式
      • 方式一:在tabBarController控制器中,做对应的切换子控制器操作
        • 我们可以定义协议,让后让tabBarController遵守协议,成为自定义类的代理,然后在自定义的按钮点击事件将点击的按钮的tag值,传过来,-> 有索引,有tabBarController(有selectedViewController属性好像),就可以做对应的切换操作了.
      • 方式二:在自定义View类中,做对应的切换tabBarController子控制器操作
        • 在按钮点击事件中,我们取得了按钮的tag,也就是切换子控制器的索引,所以现在我们 拿到tabBarController就可以切换子控制器了,其实很简单,如果让tabBarController成为了主窗口的根控制器,所以我们拿到主窗口的根控制器,不就是tabBarController,有要切换子控制器的索引,有tabBarController,就可以做切换操作了

3、设置tabBar主题

  • 统一给所有的UITabBarItem设置文字属性,默认与选中样式
/**
 * 设置item属性
 */
- (void)setupItem
{
    // UIControlStateNormal状态下的文字属性
    NSMutableDictionary *normalAttrs = [NSMutableDictionary dictionary];
    // 文字颜色
    normalAttrs[NSForegroundColorAttributeName] = [UIColor grayColor];
    // 文字大小
    normalAttrs[NSFontAttributeName] = [UIFont systemFontOfSize:12];
    
    // UIControlStateSelected状态下的文字属性
    NSMutableDictionary *selectedAttrs = [NSMutableDictionary dictionary];
    // 文字颜色
    selectedAttrs[NSForegroundColorAttributeName] = [UIColor darkGrayColor];
    
    // 统一给所有的UITabBarItem设置文字属性
    // 只有后面带有UI_APPEARANCE_SELECTOR的属性或方法, 才可以通过appearance对象来统一设置
    UITabBarItem *item = [UITabBarItem appearance];
    [item setTitleTextAttributes:normalAttrs forState:UIControlStateNormal];
    [item setTitleTextAttributes:selectedAttrs forState:UIControlStateSelected];
}

4、自定义UITabBarController

  • 添加所有的子控制器
@implementation JPTabBarController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 设置item属性
    [self setupItem];
    
    // 添加所有的子控制器
    [self setupChildVcs];
    
    // 处理TabBar,KVC替换为自定义tabBar
  self setValue:[[JPTabBar alloc] init] forKeyPath:@"tabBar"];
}


/**
 * 添加所有的子控制器
 */
- (void)setupChildVcs
{
    [self setupChildVc:[[UIViewController alloc] init] title:@"关注" image:@"tabBar_friendTrends_icon" selectedImage:@"tabBar_friendTrends_click_icon"];
    
    [self setupChildVc:[[UIViewController alloc] init] title:@"首页" image:@"tabBar_essence_icon" selectedImage:@"tabBar_essence_click_icon"];
    
    [self setupChildVc:[[UIViewController alloc] init] title:@"发现" image:@"tabBar_new_icon" selectedImage:@"tabBar_new_click_icon"];
    
    [self setupChildVc:[[UIViewController alloc] initWithStyle:UITableViewStyleGrouped] title:@"我" image:@"tabBar_me_icon" selectedImage:@"tabBar_me_click_icon"];
}

/**
 * 添加一个子控制器
 * @param title 文字
 * @param image 图片
 * @param selectedImage 选中时的图片
 */
- (void)setupChildVc:(UIViewController *)vc title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage
{
    // 包装一个导航控制器
    JPNavigationController *nav = [[JPNavigationController alloc] initWithRootViewController:vc];
    [self addChildViewController:nav];
    
    // 设置子控制器的tabBarItem
    nav.tabBarItem.title = title;
    nav.tabBarItem.image = [UIImage imageNamed:image];
    nav.tabBarItem.selectedImage = [UIImage imageNamed:selectedImage];
}
@end

你可能感兴趣的:(iOS --UITabBarController)