自定义tabbar, 中间凸起, 点击图片放大

常见的三种自定义tabBar

效果图

1
2

Demo 下载地址: ZYCustomTabBar 觉得有用的话, 请给一个star

demo里面有三种自定义方式

实现思路

  1. UITabBarItem可以看做是一种特殊的button, 可以创建自定义的button
  2. 创建自定义的ZYTabBarViewController继承UITabBarController
  3. 创建一个继承自UITabBar的实体类ZYTabbar
  4. 通过按钮的点击事件,设置代理
  • typeOne: 实现中间只有图片的tabBar
#pragma mark - custom method
// 初始化所有的子控制器
- (void)setupAllChildViewControllers {
    // 1.ONE
    UIViewController *one = [[UIViewController alloc] init];
    one.view.backgroundColor = [UIColor whiteColor];
    [self addChildViewController:one  title:@"首页" imageName:@"tabbar_news" selectedImageName:@"tabbar_news_hl"];
    
    // 2.TWO
    UIViewController *two = [[UIViewController alloc] init];
    two.view.backgroundColor = [UIColor magentaColor];
    [self addChildViewController:two title:@"图片" imageName:@"tabbar_picture" selectedImageName:@"tabbar_picture_hl"];
    
  
    if (self.tabBarType == typeOne) {
        // 2.publishButton
        UIViewController *publish = [[UIViewController alloc] init];
        publish.view.backgroundColor = [UIColor blueColor];
        two.view.backgroundColor = [UIColor magentaColor];
        [self addChildViewController:publish title:@"publish" imageName:@"tabbar_write" selectedImageName:@"tabbar_write"];
    }
    
    // 3.THREE
    UIViewController *three = [[UIViewController alloc] init];
    three.view.backgroundColor = [UIColor cyanColor];
    [self addChildViewController:three title:@"精华" imageName:@"tabbar_video" selectedImageName:@"tabbar_video_hl"];
    
    // 4.FOUR
    UIViewController *four = [[UIViewController alloc] init];
    four.view.backgroundColor = [UIColor yellowColor];
    [self addChildViewController:four title:@"我的" imageName:@"tabbar_setting" selectedImageName:@"tabbar_setting_hl"];
}


/**
 *  初始化一个子控制器
 *
 *  @param childVc           需要初始化的子控制器
 *  @param title             标题
 *  @param imageName         图标
 *  @param selectedImageName 选中的图标
 */
- (void)addChildViewController:(UIViewController *)childVc title:(NSString *)title imageName:(NSString *)imageName selectedImageName:(NSString *)selectedImageName {
    // 1.设置控制器的属性
    childVc.title = title;
    // 设置图标
    childVc.tabBarItem.image = [[UIImage imageNamed:imageName] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    // 设置选中的图标
    childVc.tabBarItem.selectedImage = [[UIImage imageNamed:selectedImageName] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    [childVc.tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor redColor],NSFontAttributeName:[UIFont systemFontOfSize:13.f]} forState:UIControlStateSelected];

    //方式一 (self.tabBarType == typeOne) 只有图片没有文字tabbar
    if ([title isEqualToString:@"publish"]) {
        //tabBar图片居中显示,不显示文字
        childVc.title = @"";
        childVc.tabBarItem.imageInsets = UIEdgeInsetsMake(5, 0, -5, 0);
    }
    // 2.包装一个导航控制器
    ZYNavigationVc *nav = [[ZYNavigationVc alloc] initWithRootViewController:childVc];
    [self addChildViewController:nav];
}

Demo里面的三种方式是采用枚举来区分的

#import <UIKit/UIKit.h>
typedef NS_ENUM(NSInteger, TabBarType) {
    typeOne = 0,
    typeTwo = 1,
    typeThree = 2
};
@interface ZYTabBarViewController : UITabBarController
@property (nonatomic, assign) TabBarType tabBarType;
@end

typeOne 需要添加的代码

if (self.tabBarType == typeOne) { UIViewController *publish = [[UIViewController alloc] init]; publish.view.backgroundColor = [UIColor blueColor]; two.view.backgroundColor = [UIColor magentaColor]; [self addChildViewController:publish title:@"publish" imageName:@"tabbar_write" selectedImageName:@"tabbar_write"]; }

//方式一 (self.tabBarType == typeOne) 只有图片没有文字tabbar if ([title isEqualToString:@"publish"]) { //tabBar图片居中显示,不显示文字 childVc.title = @""; childVc.tabBarItem.imageInsets = UIEdgeInsetsMake(5, 0, -5, 0); }

typeOne实现思路:

这是一种投机取巧的方式, 主要是把title设置为@"", 在设置图片的偏移

typeTwo实现思路:

通过自定义UITabBar
.m文件核心代码:

- (void)layoutSubviews {
    [super layoutSubviews];
    //按钮的尺寸
    CGFloat buttonW = self.frame.size.width/5.0;
    CGFloat buttonH = self.frame.size.height;
    
    self.publishButton.center = CGPointMake(self.frame.size.width * 0.5, buttonH * 0.5);
    //中间凸起tabBar
    if (_isCircle) {
        self.publishButton.center = CGPointMake(self.frame.size.width * 0.5, self.frame.size.height/2.0 - 20);
        self.label.center = CGPointMake(self.publishButton.center.x, CGRectGetMaxY(self.publishButton.frame)+10);
    }
    //按钮索引
    NSInteger tabbarIndex = 0;
    for (UIView * subview in self.subviews) {
        if ([subview isKindOfClass:NSClassFromString(@"UITabBarButton")]) {
            subview.frame = CGRectMake(tabbarIndex * buttonW, 0, buttonW, buttonH);
            tabbarIndex ++;
            //把中间的按钮位置预留出来
            if (tabbarIndex == 2) {
                tabbarIndex ++;
            }
        }
    }
}
- (void)publishClick {
    if ([self.ZYDelegate respondsToSelector:@selector(tabBarDidClickPlusButton)]) {
        [self.ZYDelegate tabBarDidClickPlusButton];
    }
}

在自定义的ZYTabBarViewController利用kvc替换系统的tabBar, 这里的self.tabBarType == typeTwo 就是表示第二种自定义tabBar

 ZYTabbar * tabbar = [[ZYTabbar alloc] init];
    tabbar.ZYDelegate = self;
    self.delegate = self;
    //注意:因为是系统的tabBar是readonly的,所以用KVC方法替换
    if (self.tabBarType == typeTwo) {
        [self setValue:tabbar forKey:@"tabBar"];
    }else if (self.tabBarType == typeThree) {
        tabbar.isCircle = YES;
        [self setValue:tabbar forKey:@"tabBar"];
    }
    [self setupAllChildViewControllers];

typeThree实现思路:

typeTwo基本一致, 就是把自定义button的背景图片以及位置移动一下.并设置label的位置

代码如下:

#pragma mark -- setter 
- (void)setIsCircle:(BOOL)isCircle {
    _isCircle = isCircle;
    if (isCircle) {
        [self.publishButton setBackgroundImage:[UIImage imageNamed:@"post_normal"] forState:UIControlStateNormal];
        [self.publishButton setBackgroundImage:[UIImage imageNamed:@"post_normal"] forState:UIControlStateHighlighted];
        self.publishButton.center = CGPointMake(self.frame.size.width * 0.5, self.frame.size.height/2.0 - 20);
        self.label.center = CGPointMake(self.publishButton.center.x, CGRectGetMaxY(self.publishButton.frame)+10);
        [self addSubview:self.label];
    }
}

这里在ZYTabbar声明一个isCircle主要是为了区分方式二和方式三, 并实现isCircle的setter方法, 来修改button的背景图片, 由于layoutSubviews这个方法是在isCirclesetter方法之后调用的, 所以我们还需要在layoutSubviews这个方法内部修改button, label的位置

- (void)layoutSubviews {
    [super layoutSubviews];
    //按钮的尺寸
    CGFloat buttonW = self.frame.size.width/5.0;
    CGFloat buttonH = self.frame.size.height;
    
    self.publishButton.center = CGPointMake(self.frame.size.width * 0.5, buttonH * 0.5);
    //中间凸起tabBar
    if (_isCircle) {
        self.publishButton.center = CGPointMake(self.frame.size.width * 0.5, self.frame.size.height/2.0 - 20);
        self.label.center = CGPointMake(self.publishButton.center.x, CGRectGetMaxY(self.publishButton.frame)+10);
    }
    //按钮索引
    NSInteger tabbarIndex = 0;
    for (UIView * subview in self.subviews) {
        if ([subview isKindOfClass:NSClassFromString(@"UITabBarButton")]) {
            subview.frame = CGRectMake(tabbarIndex * buttonW, 0, buttonW, buttonH);
            tabbarIndex ++;
            //把中间的按钮位置预留出来
            if (tabbarIndex == 2) {
                tabbarIndex ++;
            }
        }
    }
}

到这里差不多demo里面的三种自定义tabBar已经说完了.
最后说一下点击tabBar的动画效果, 代码如下:

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
    NSMutableArray * tabbarArr = [NSMutableArray array];
    NSInteger index = [self.tabBar.items indexOfObject:item];
 
    for (UIView *subview in tabBar.subviews) {
        if ([subview isKindOfClass:NSClassFromString(@"UITabBarButton")]) {
            [tabbarArr addObject:subview];
        }
    }
    
    UIView * tabbarBtn = tabbarArr[index];
    for (UIView * imgV in tabbarBtn.subviews) {
        if ([imgV isKindOfClass:NSClassFromString(@"UITabBarSwappableImageView")]) {
           
            CABasicAnimation*pulse = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
            pulse.timingFunction= [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
            pulse.duration = 0.2;
            pulse.repeatCount= 1;
            pulse.autoreverses= YES;
            pulse.fromValue= [NSNumber numberWithFloat:0.7];
            pulse.toValue= [NSNumber numberWithFloat:1.3];
            [imgV.layer
             addAnimation:pulse forKey:nil];
        }
    }
}

这里主要是实现UITabBarDelegate的代理方法来实现的, 需要注意的一点就是我们不需要再声明 self.tabBar.delegate = self, 因为我已经实现了UITabBarController的代理, 具体的原因我也不是很清楚, 想了解更多的话, 还是去找度娘

到这里已经全部说完了, 楼主语言表达能力, 技术有限! 有说的不对的地方还请小伙伴们速速提出, 谢谢!!!
参考文献: 自定义TabBar(在tabBar中有一个弧形的凸起)
作者: JSOfJackChen
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容