LiveRoomHeadView.m 529 B

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