iOS中为图标添加小红点

作者: Hither | 来源:发表于2016-04-01 11:03 被阅读2290次

在我们的项目经常会遇到这样的需求:当有新消息出现的时候,需要显示一个小红点提醒用户有新消息了。效果如图:

下面是代码:

为UITabBar写一个Category
.h中:
#import <UIKit/UIKit.h>

@interface UITabBar (badge)
//显示小红点
- (void)showBadgeOnItemIndex:(int)index;
//隐藏小红点
- (void)hideBadgeOnItemIndex:(int)index;

@end

#import "UITabBar+badge.h"
#define TabbarItemNums 5.0    //tabbar的数量
@implementation UITabBar (badge)
- (void)showBadgeOnItemIndex:(int)index{
    
    //移除之前的小红点
    [self removeBadgeOnItemIndex:index];
    
    //新建小红点
    UIView *badgeView = [[UIView alloc]init];
    badgeView.tag = 888 + index;
    badgeView.layer.cornerRadius = 5;
    badgeView.backgroundColor = [UIColor redColor];
    CGRect tabFrame = self.frame;
    
    //确定小红点的位置
    float percentX = (index +0.6) / TabbarItemNums;
    CGFloat x = ceilf(percentX * tabFrame.size.width);
    CGFloat y = ceilf(0.1 * tabFrame.size.height);
    badgeView.frame = CGRectMake(x, y, 10, 10);
    [self addSubview:badgeView];
    
}

- (void)hideBadgeOnItemIndex:(int)index{
    
    //移除小红点
    [self removeBadgeOnItemIndex:index];
    
}

- (void)removeBadgeOnItemIndex:(int)index{
    
    //按照tag值进行移除
    for (UIView *subView in self.subviews) {
        
        if (subView.tag == 888+index) {
            
            [subView removeFromSuperview];
            
        }
    }
}
@end

在需要的地方调用:
如:
[tabBar showBadgeOnItemIndex:3];

相关文章

网友评论

  • 云彦民:贱人又装逼
    Hither:@没有过不去只有回不去 你再乱说 我就和你女朋友分手!
  • 来宝:460876003@qq.com跪求Demo
    Hither: @来宝 你为naviBar写一个Category代码改下就行了
    来宝:@hither 如果不是在tabbar上面添加小红点,而是在导航条上的naviBar或者页面上某个按钮上呢?
    Hither:@来宝 为UITabBar写一个Category 把我的代码复制上去 你再在viewController中调用就可以了
  • 井湾村夫:759275499@qq.com,跪求demo
    井湾村夫:@hither 好的,
    Hither:@申浩栋 为UITabBar写一个Category 把我的代码复制上去 你再在viewController中调用就可以了

本文标题:iOS中为图标添加小红点

本文链接:https://www.haomeiwen.com/subject/bahylttx.html