UITabbar上显示小红点。

  1. 如果有数字,直接使用 viewController.tabBarItem.badgeValue = @”1″;

  2. 没有数字,自己往tabbar加subView。

    需要注意的是坐标x,y一定要是整数,否则会有模糊。
        UIImageView *dotImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"personinfo_unread@2x.png"]];
        dotImage.backgroundColor = [UIColor clearColor];
        dotImage.tag = RED_DOT_TAG;
        CGRect tabFrame = tabbarController.tabBar.frame;
        CGFloat x = ceilf(0.94 * tabFrame.size.width);
        CGFloat y = ceilf(0.2 * tabFrame.size.height);
        dotImage.frame = CGRectMake(x, y, 6, 6);
        [tabbarController.tabBar addSubview:dotImage];
        [dotImage release];
    原文作者:Eidesen
    原文地址: https://segmentfault.com/a/1190000004291365
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞