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