HomeHotTalentView.m 578 B

123456789101112131415161718192021222324252627
  1. //
  2. // HomeHotTalentView.m
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/8/29.
  6. //
  7. #import "HomeHotTalentView.h"
  8. @implementation HomeHotTalentView
  9. + (instancetype)shareInstance {
  10. HomeHotTalentView *view = [[[NSBundle mainBundle] loadNibNamed:@"HomeHotTalentView" owner:nil options:nil] firstObject];
  11. return view;
  12. }
  13. + (CGFloat)getViewHeight {
  14. return 200;
  15. }
  16. /*
  17. // Only override drawRect: if you perform custom drawing.
  18. // An empty implementation adversely affects performance during animation.
  19. - (void)drawRect:(CGRect)rect {
  20. // Drawing code
  21. }
  22. */
  23. @end