1234567891011121314151617181920212223242526272829303132 |
- //
- // HomeHotCourseView.h
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/4/21.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger, COURSE_ACTION) {
- COURSE_ACTION_LIVE, // 视频课
- COURSE_ACTION_VIDEO, // 直播课
- COURSE_ACTION_MORE, // 更多
- };
- typedef void(^HotCourseCallback)(COURSE_ACTION action);
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeHotCourseView : UIView
- @property (weak, nonatomic) IBOutlet UIView *courseContainer;
- + (instancetype)shareInstance;
- - (void)courseActionCallback:(HotCourseCallback)callback;
- - (CGFloat)getViewHeightWithCount:(NSInteger)count;
- @end
- NS_ASSUME_NONNULL_END
|