| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // MOMainTabController.h
- // MiMoLive
- //
- // Created by SuperC on 2023/10/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOMainTabController : UITabBarController
- @property (nonatomic, assign) BOOL isNormalOpen;
- @property (nonatomic, assign) BOOL resetAfterChangeLanguage;///切换语言重新toResetTabbar
- @property (nonatomic, copy) NSArray *floatingsArr;//浮窗数据//切换语言需要重新拿到这个浮窗数据刷新右下角充值按钮
- /// 单例
- + (instancetype)sharedSingleton;
- ///1. 重设设置底部tabbar 2. 重新登录IM
- - (void)toResetSetupTabbar;
- /// 重置tabbar
- - (void)toResetTabbar;
- ///切换账号需要重新弹窗的View
- - (void)ChangeNeedShowAlert;
- - (void)showTabbarWithAnimation:(BOOL)animation;
- - (void)hideTabbarWithAnimation:(BOOL)animation;
- - (BOOL)isInLiveRoom;
- @end
- NS_ASSUME_NONNULL_END
|