KSHomeButton.m 555 B

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