HomeHotTalentView.h 435 B

123456789101112131415161718192021222324
  1. //
  2. // HomeHotTalentView.h
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/8/29.
  6. //
  7. #import <UIKit/UIKit.h>
  8. typedef void(^HomeMoreTalentCallback)(void);
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface HomeHotTalentView : UIView
  11. @property (weak, nonatomic) IBOutlet UIView *talentContentView;
  12. + (instancetype)shareInstance;
  13. - (void)homeTalentMore:(HomeMoreTalentCallback)callback;
  14. + (CGFloat)getViewHeight;
  15. @end
  16. NS_ASSUME_NONNULL_END