1234567891011121314151617181920212223242526272829 |
- #import "MTFriendInfoHeaderView.h"
- @implementation MTFriendInfoHeaderView
- - (instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- self = [[[NSBundle mainBundle] loadNibNamed:@"MTFriendInfoHeaderView" owner:self options:nil] lastObject];
- if (self) {
- self.frame = frame;
- [self setupViews];
- }
- return self;
- }
- -(void)setupViews{
-
- }
- -(void)setViewModel:(MTFriendInfoViewModel *)viewModel{
- _viewModel = viewModel;
- }
- @end
|