12345678910111213141516171819202122232425262728293031 |
- //
- // NotiferHeadView.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2022/5/6.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger, NOTIFER_TYPE) {
- NOTIFER_TYPE_ALL,
- NOTIFER_TYPE_COURSE,
- NOTIFER_TYPE_SYSMSG,
- };
- typedef void(^NotiferChooseAction)(NOTIFER_TYPE type);
- NS_ASSUME_NONNULL_BEGIN
- @interface NotiferHeadView : UIView
- + (instancetype)shareIntance;
- - (void)configUnreadCountCourse:(NSInteger)courseCount sysMessage:(NSInteger)sysMessageCount;
- - (void)chooseTypeCallback:(NotiferChooseAction)callback;
- @end
- NS_ASSUME_NONNULL_END
|