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