Newer
Older
XinYang_IOS / YH_Category / UITabBar+Extension.h
@zhangfeng zhangfeng on 7 Dec 563 bytes 1.8.0
//
//  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