123456789101112131415161718192021222324252627 |
- //
- // MTContactsNavView.m
- // Jianbinglian
- //
- // Created by Simon on 2021/2/20.
- // Copyright © 2021 Simon. All rights reserved.
- //
- #import "MTLeftNavView.h"
- @implementation MTLeftNavView
- - (instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- self = [[[NSBundle mainBundle] loadNibNamed:@"MTLeftNavView" owner:self options:nil] lastObject];
- if (self) {
- self.frame = frame;
- [self setupViews];
- }
- return self;
- }
- -(void)setupViews{
-
- }
- @end
|