| 123456789101112131415161718192021222324 |
- //
- // KSTabBarViewController.h
- // KulexiuForTeacher
- //
- // Created by Kyle on 2022/3/17.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KSTabBarViewController : UITabBarController
- - (void)tabBarSelectedWithIndex:(NSInteger)index;
- - (void)noteNewsWithIndex:(NSInteger)index count:(NSInteger)count; //提醒
- - (void)clearNewsWithIndex:(NSInteger)index; //清除
- - (void)removeControllerNotifer; // 移除子控制器通知
- @end
- NS_ASSUME_NONNULL_END
|