26 lines
466 B
Objective-C
26 lines
466 B
Objective-C
//
|
|
// XJBaseTabBarController.h
|
|
// healthQuestion
|
|
//
|
|
// Created by xulei on 2022/8/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XJBaseTabBarController : UITabBarController
|
|
|
|
/**
|
|
设置小红点
|
|
|
|
@param index tabbar下标
|
|
@param isShow 是显示还是隐藏
|
|
*/
|
|
-(void)setRedDotWithIndex:(NSInteger)index isShow:(BOOL)isShow isNumber:(NSInteger)number;
|
|
|
|
@property (nonatomic, assign)NSInteger lastSelectIndex;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|