1234567891011121314151617181920212223242526 |
- //
- // KSHomeButton.m
- // StudentDaya
- //
- // Created by Kyle on 2020/9/25.
- // Copyright © 2020 DayaMusic. All rights reserved.
- //
- #import "KSHomeButton.h"
- @implementation KSHomeButton
- + (instancetype)shareInstance {
- KSHomeButton *view = [[[NSBundle mainBundle] loadNibNamed:@"KSHomeButton" 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
|