MTAddFriendHeaderView.m 622 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MTAddFriendHeaderView.m
  3. // Jianbinglian
  4. //
  5. // Created by Simon on 2021/2/25.
  6. // Copyright © 2021 Simon. All rights reserved.
  7. //
  8. #import "MTAddFriendHeaderView.h"
  9. @implementation MTAddFriendHeaderView
  10. - (instancetype)initWithFrame:(CGRect)frame
  11. {
  12. self = [super initWithFrame:frame];
  13. self = [[[NSBundle mainBundle] loadNibNamed:@"MTAddFriendHeaderView" 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. -(void)setViewModel:(MTAddFriendViewModel *)viewModel{
  23. _viewModel = viewModel;
  24. }
  25. @end