UITabBar+badge.h 565 B

12345678910111213141516171819202122
  1. //
  2. // UITabBar+badge.h
  3. // RCloudMessage
  4. //
  5. // Created by Jue on 16/7/1.
  6. // Copyright © 2016年 RongCloud. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UITabBar (badge)
  10. // 把badge设置到最上层
  11. - (void)bringSubviewToFrontIndex:(NSInteger)index;
  12. //重写是为了修改badge小红点儿的颜色
  13. - (void)showBadgeOnItemIndex:(NSInteger)index; //显示小红点
  14. - (void)showBadgeOnItemIndex:(NSInteger)index badgeValue:(NSInteger)badgeValue; //显示带badge的红点
  15. - (void)hideBadgeOnItemIndex:(NSInteger)index; //隐藏小红点
  16. @end