1234567891011121314151617181920212223242526 |
- //
- // HomeIntroduceView.h
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/4/21.
- //
- #import <UIKit/UIKit.h>
- typedef void(^HomeIntroduceMoreBlock)(void);
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeIntroduceView : UIView
- @property (weak, nonatomic) IBOutlet UIView *teacherContainer;
- + (instancetype)shareInstance;
- - (void)introduceMore:(HomeIntroduceMoreBlock)callback;
- - (CGFloat)getViewHeightWithSourceCount:(NSInteger)count;
- @end
- NS_ASSUME_NONNULL_END
|