MTContactsHomeHeaderView.m 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // MTContactsHomeHeaderView.m
  3. // TheThrees
  4. //
  5. // Created by Simon on 2019/9/11.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import "MTContactsHomeHeaderView.h"
  9. #import "MTAddFriendViewController.h"
  10. #import "MTCompanyContactsViewController.h"
  11. @interface MTContactsHomeHeaderView ()
  12. @property (weak, nonatomic) IBOutlet UIButton *addBtn;
  13. @property (weak, nonatomic) IBOutlet UIButton *qunBtn;
  14. @property (weak, nonatomic) IBOutlet UIButton *heiBtn;
  15. @property (weak, nonatomic) IBOutlet UIButton *gongsiBtn;
  16. @end
  17. @implementation MTContactsHomeHeaderView
  18. - (instancetype)initWithFrame:(CGRect)frame
  19. {
  20. self = [super initWithFrame:frame];
  21. self = [[[NSBundle mainBundle] loadNibNamed:@"MTContactsHomeHeaderView" owner:self options:nil] lastObject];
  22. if (self) {
  23. self.frame = frame;
  24. [self setupViews];
  25. }
  26. return self;
  27. }
  28. -(void)setupViews{
  29. [[self.addBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  30. MTAddFriendViewController *vc = [[MTAddFriendViewController alloc]init];
  31. [CURRENT_NAV pushViewController:vc animated:YES];
  32. }];
  33. [[self.qunBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  34. }];
  35. [[self.heiBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  36. }];
  37. [[self.gongsiBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  38. MTCompanyContactsViewController *vc = [[MTCompanyContactsViewController alloc]init];
  39. [CURRENT_NAV pushViewController:vc animated:YES];
  40. }];
  41. }
  42. -(void)setViewModel:(MTContactsHomeViewModel *)viewModel{
  43. _viewModel = viewModel;
  44. }
  45. @end