HomeIntroduceView.h 467 B

1234567891011121314151617181920212223242526
  1. //
  2. // HomeIntroduceView.h
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/4/21.
  6. //
  7. #import <UIKit/UIKit.h>
  8. typedef void(^HomeIntroduceMoreBlock)(void);
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeIntroduceView : UIView
  11. @property (weak, nonatomic) IBOutlet UIView *teacherContainer;
  12. + (instancetype)shareInstance;
  13. - (void)introduceMore:(HomeIntroduceMoreBlock)callback;
  14. - (CGFloat)getViewHeightWithSourceCount:(NSInteger)count;
  15. @end
  16. NS_ASSUME_NONNULL_END