JLMenuView.m 364 B

12345678910111213141516171819202122232425262728
  1. //
  2. // JLMenuView.m
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2019/12/12.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import "JLMenuView.h"
  9. #import "XLsn0wScrollUnderlineButton.h"
  10. @implementation JLMenuView
  11. - (id)initWithFrame:(CGRect)frame
  12. {
  13. self = [super initWithFrame:frame];
  14. if (self) {
  15. }
  16. return self;
  17. }
  18. @end