| 123456789101112131415161718192021222324 |
- //
- // HomeHotTalentView.h
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/8/29.
- //
- #import <UIKit/UIKit.h>
- typedef void(^HomeMoreTalentCallback)(void);
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeHotTalentView : UIView
- @property (weak, nonatomic) IBOutlet UIView *talentContentView;
- + (instancetype)shareInstance;
- - (void)homeTalentMore:(HomeMoreTalentCallback)callback;
- + (CGFloat)getViewHeight;
- @end
- NS_ASSUME_NONNULL_END
|