MTLeftNavView.m 510 B

123456789101112131415161718192021222324252627
  1. //
  2. // MTContactsNavView.m
  3. // Jianbinglian
  4. //
  5. // Created by Simon on 2021/2/20.
  6. // Copyright © 2021 Simon. All rights reserved.
  7. //
  8. #import "MTLeftNavView.h"
  9. @implementation MTLeftNavView
  10. - (instancetype)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. self = [[[NSBundle mainBundle] loadNibNamed:@"MTLeftNavView" owner:self options:nil] lastObject];
  14. if (self) {
  15. self.frame = frame;
  16. [self setupViews];
  17. }
  18. return self;
  19. }
  20. -(void)setupViews{
  21. }
  22. @end