UITabBar+badge.h 416 B

12345678910111213141516
  1. //
  2. // UITabBar+badge.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/9/12.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UITabBar (badge)
  10. - (void)showBadgeOnItemIndex:(int)index; //显示小红点
  11. - (void)showBadgeOnItemIndex:(int)index badgeValue:(int)badgeValue; //显示带badge的红点
  12. - (void)hideBadgeOnItemIndex:(int)index; //隐藏小红点
  13. @end