// // UITabBar+Extension.h // YJJ // // Created by Luo yuntao on 2018/11/16. // Copyright © 2018年 YJJ. All rights reserved. // #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface UITabBar (Extension) /** 显示小红点 */ - (void)showBadgeOnTabIndex:(NSInteger)index number:(NSInteger)number; /** 隐藏小红点 */ - (void)hideBadgeOnTabIndex:(NSInteger)index; /* 显示或隐藏“新”标签*/ - (void)showBadgeOnTabbarItemIndex:(NSInteger)index withImageName:(NSString*)imageName withHideOrShow:(BOOL)isShow; @end NS_ASSUME_NONNULL_END