123456789101112131415161718192021222324252627 |
- //
- // HomeHotTalentView.m
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/8/29.
- //
- #import "HomeHotTalentView.h"
- @implementation HomeHotTalentView
- + (instancetype)shareInstance {
- HomeHotTalentView *view = [[[NSBundle mainBundle] loadNibNamed:@"HomeHotTalentView" owner:nil options:nil] firstObject];
- return view;
- }
- + (CGFloat)getViewHeight {
- return 200;
- }
- /*
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect {
- // Drawing code
- }
- */
- @end
|