MOMainTabController.h 863 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // MOMainTabController.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOMainTabController : UITabBarController
  10. @property (nonatomic, assign) BOOL isNormalOpen;
  11. @property (nonatomic, assign) BOOL resetAfterChangeLanguage;///切换语言重新toResetTabbar
  12. @property (nonatomic, copy) NSArray *floatingsArr;//浮窗数据//切换语言需要重新拿到这个浮窗数据刷新右下角充值按钮
  13. /// 单例
  14. + (instancetype)sharedSingleton;
  15. ///1. 重设设置底部tabbar 2. 重新登录IM
  16. - (void)toResetSetupTabbar;
  17. /// 重置tabbar
  18. - (void)toResetTabbar;
  19. ///切换账号需要重新弹窗的View
  20. - (void)ChangeNeedShowAlert;
  21. - (void)showTabbarWithAnimation:(BOOL)animation;
  22. - (void)hideTabbarWithAnimation:(BOOL)animation;
  23. - (BOOL)isInLiveRoom;
  24. @end
  25. NS_ASSUME_NONNULL_END