KSTabBarViewController.h 476 B

123456789101112131415161718192021222324
  1. //
  2. // KSTabBarViewController.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by Kyle on 2022/3/17.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface KSTabBarViewController : UITabBarController
  10. - (void)tabBarSelectedWithIndex:(NSInteger)index;
  11. - (void)noteNewsWithIndex:(NSInteger)index count:(NSInteger)count; //提醒
  12. - (void)clearNewsWithIndex:(NSInteger)index; //清除
  13. - (void)removeControllerNotifer; // 移除子控制器通知
  14. @end
  15. NS_ASSUME_NONNULL_END