MTCompanyContactsViewController.m 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. //
  2. // MTCompanyContactsViewController.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTCompanyContactsViewController.h"
  8. #import "MTContactsHomeTableViewCell.h"
  9. #import "MTLeftNavView.h"
  10. #import "MTMsgMoreView.h"
  11. #import "MTSeachFriendViewController.h"
  12. #import "MTAddFriendViewController.h"
  13. #import "MTFriendInfoViewController.h"
  14. @interface MTCompanyContactsViewController ()<UITableViewDelegate,UITableViewDataSource>
  15. @property (strong, nonatomic) MTBaseTableView *tableView;
  16. @property (nonatomic, strong) MTCompanyContactsViewModel *viewModel;
  17. @property (nonatomic, strong) UIView *nameView;
  18. @property (nonatomic, strong) UILabel *nameL;
  19. @property (nonatomic, strong) UIButton *searchBtn;
  20. @property (nonatomic, strong) UIButton *moreBtn;
  21. @end
  22. @implementation MTCompanyContactsViewController
  23. #pragma mark -- system
  24. -(void)viewWillAppear:(BOOL)animated{
  25. [super viewWillAppear:animated];
  26. }
  27. - (void)viewDidLoad {
  28. [super viewDidLoad];
  29. [self.view addSubview:self.tableView];
  30. self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  31. }];
  32. [self setNaviBarTitle:@"公司通讯录"];
  33. self.searchBtn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, kNumFrom375(30), kNumFrom375(30))];
  34. [self.searchBtn setImage:ImageNamed(@"find_icon") forState:UIControlStateNormal];
  35. self.moreBtn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, kNumFrom375(30), kNumFrom375(30))];
  36. [self.moreBtn setImage:ImageNamed(@"more_icon") forState:UIControlStateNormal];
  37. [self setNaviBarRightButtonArray:@[self.moreBtn,self.searchBtn]];
  38. [[self.searchBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  39. MTSeachFriendViewController *vc = [[MTSeachFriendViewController alloc]init];
  40. [CURRENT_NAV pushViewController:vc animated:YES];
  41. }];
  42. [[self.moreBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  43. MTMsgMoreView *view = [[MTMsgMoreView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight)];
  44. [[view.saoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  45. [view removeFromSuperview];
  46. }];
  47. [[view.qunliaoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  48. [view removeFromSuperview];
  49. }];
  50. [[view.addBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  51. [view removeFromSuperview];
  52. MTAddFriendViewController *vc = [[MTAddFriendViewController alloc]init];
  53. [CURRENT_NAV pushViewController:vc animated:YES];
  54. }];
  55. [KWINDOW addSubview:view];
  56. }];
  57. self.nameView = [[UIView alloc]initWithFrame:CGRectMake(0, navHeight, ScreenWidth, kNumFrom375(35))];
  58. self.nameView.backgroundColor = HColor(@"#F6F6F6");
  59. [self.view addSubview:self.nameView];
  60. self.nameL = [[UILabel alloc]initWithFrame:CGRectMake(kNumFrom375(18), kNumFrom375(10), ScreenWidth-kNumFrom375(20), kNumFrom375(22))];
  61. self.nameL.text = @"XX公司";
  62. self.nameL.textColor = HColor(@"#999F9D");
  63. self.nameL.font = font(14);
  64. [self.nameView addSubview:self.nameL];
  65. }
  66. - (void)mt_bindViewModel{
  67. // @weakify(self)
  68. [self.viewModel.refreshUISubject subscribeNext:^(id _Nullable x) {
  69. // @strongify(self)
  70. [self.tableView.mj_header endRefreshing];
  71. }];
  72. [self.viewModel.errorSubject subscribeNext:^(id _Nullable x) {
  73. // @strongify(self)
  74. }];
  75. }
  76. #pragma mark -- lazy
  77. -(MTCompanyContactsViewModel *)viewModel{
  78. if (!_viewModel) {
  79. _viewModel = [[MTCompanyContactsViewModel alloc]init];
  80. _viewModel.pageIndex = 1;
  81. }
  82. return _viewModel;
  83. }
  84. - (MTBaseTableView *)tableView {
  85. if (!_tableView) {
  86. _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, navHeight+kNumFrom375(35), ScreenWidth, ScreenHeight - navHeight-kNumFrom375(35)) style:UITableViewStylePlain];
  87. _tableView.delegate = self;
  88. _tableView.dataSource = self;
  89. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  90. _tableView.showsVerticalScrollIndicator = NO;
  91. _tableView.backgroundColor = [UIColor clearColor];
  92. }
  93. return _tableView;
  94. }
  95. #pragma mark -- Constraints
  96. -(void)updateViewConstraints{
  97. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  98. make.top.mas_equalTo(navHeight+kNumFrom375(35));
  99. make.left.right.bottom.equalTo(self.view);
  100. }];
  101. [super updateViewConstraints];
  102. }
  103. #pragma mark - UITableViewDataSource & UITableViewDelegate
  104. -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  105. return 2;
  106. }
  107. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
  108. return kNumFrom375(24);
  109. }
  110. - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  111. {
  112. //自定义Header标题
  113. UIView* myView = [[UIView alloc] init];
  114. myView.backgroundColor = HColor(@"#F6F6F6");
  115. UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(kNumFrom375(18), kNumFrom375(5), kNumFrom375(100), kNumFrom375(15))];
  116. titleLabel.textColor= HColor(@"#999F9D");
  117. NSString *title = @"A";
  118. titleLabel.text=title;
  119. [myView addSubview:titleLabel];
  120. return myView;
  121. }
  122. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  123. return 10;
  124. }
  125. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  126. return kNumFrom375(60);
  127. }
  128. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  129. // MTContactsHomeTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTContactsHomeTableViewCellID" forIndexPath:indexPath];
  130. //
  131. // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row];
  132. // return cell;
  133. static NSString *cellID = @"MTContactsHomeTableViewCell";
  134. MTContactsHomeTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  135. if (!cell)
  136. {
  137. [tableView registerNib:[UINib nibWithNibName:cellID bundle:nil] forCellReuseIdentifier:cellID];
  138. cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  139. }
  140. cell.selectionStyle=UITableViewCellSelectionStyleNone;
  141. // [cell layoutIfNeeded];
  142. // cell.model = self.viewModel.listArray[indexPath.row];
  143. return cell;
  144. }
  145. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  146. MTFriendInfoViewController *vc = [[MTFriendInfoViewController alloc]init];
  147. [CURRENT_NAV pushViewController:vc animated:YES];
  148. }
  149. #pragma mark---tableView索引相关设置----
  150. //添加TableView头视图标题
  151. - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
  152. {
  153. // NSDictionary *dict = self.dataArray[section];
  154. // NSString *title = dict[@"firstLetter"];
  155. return @"A";
  156. }
  157. // 返回索引的数据
  158. - (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView {
  159. return @[@"A",@"B"];
  160. }
  161. //点击索引后跳转到对应的section
  162. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
  163. return index;
  164. }
  165. @end