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