MTContactsHomeViewController.m 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. //
  2. // MTContactsHomeViewController.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTContactsHomeViewController.h"
  8. #import "MTContactsHomeHeaderView.h"
  9. #import "MTContactsHomeTableViewCell.h"
  10. #import "MTLeftNavView.h"
  11. #import "MTMsgMoreView.h"
  12. #import "MTSeachFriendViewController.h"
  13. #import "MTAddFriendViewController.h"
  14. #import "MTFriendInfoViewController.h"
  15. #import "MTCreatQunViewController.h"
  16. @interface MTContactsHomeViewController ()<UITableViewDelegate,UITableViewDataSource>
  17. @property (strong, nonatomic) MTBaseTableView *tableView;
  18. @property (nonatomic, strong) MTContactsHomeViewModel *viewModel;
  19. @property (nonatomic, strong) MTContactsHomeHeaderView *headerView;
  20. @property (nonatomic, strong) MTLeftNavView *navView;
  21. @end
  22. @implementation MTContactsHomeViewController
  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.navgationView removeFromSuperview];
  31. self.navView = [[MTLeftNavView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, navHeight)];
  32. self.navView.titleL.text = @"通讯录";
  33. [self.navView.rightOneBtn setImage:ImageNamed(@"more_icon") forState:UIControlStateNormal];
  34. [self.navView.rightTwoBtn setImage:ImageNamed(@"find_icon") forState:UIControlStateNormal];
  35. [self.view addSubview:self.navView];
  36. [self.navView mas_makeConstraints:^(MASConstraintMaker *make) {
  37. make.left.right.top.mas_equalTo(self.view);
  38. make.height.mas_equalTo(navHeight);
  39. }];
  40. [[self.navView.rightOneBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  41. MTMsgMoreView *view = [[MTMsgMoreView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight)];
  42. [[view.saoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  43. [view removeFromSuperview];
  44. }];
  45. [[view.qunliaoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  46. [view removeFromSuperview];
  47. MTCreatQunViewController *vc = [[MTCreatQunViewController alloc]init];
  48. [CURRENT_NAV pushViewController:vc animated:YES];
  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.navView.rightTwoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  58. MTSeachFriendViewController *vc = [[MTSeachFriendViewController alloc]init];
  59. [CURRENT_NAV pushViewController:vc animated:YES];
  60. }];
  61. }
  62. - (void)mt_bindViewModel{
  63. // @weakify(self)
  64. [self.viewModel.refreshUISubject subscribeNext:^(id _Nullable x) {
  65. // @strongify(self)
  66. [self.tableView.mj_header endRefreshing];
  67. }];
  68. [self.viewModel.errorSubject subscribeNext:^(id _Nullable x) {
  69. // @strongify(self)
  70. }];
  71. }
  72. #pragma mark -- lazy
  73. -(MTContactsHomeViewModel *)viewModel{
  74. if (!_viewModel) {
  75. _viewModel = [[MTContactsHomeViewModel alloc]init];
  76. _viewModel.pageIndex = 1;
  77. }
  78. return _viewModel;
  79. }
  80. -(MTContactsHomeHeaderView *)headerView{
  81. if (!_headerView) {
  82. _headerView = [[MTContactsHomeHeaderView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, kNumFrom375(175))];
  83. _headerView.viewModel = self.viewModel;
  84. }
  85. return _headerView;
  86. }
  87. - (MTBaseTableView *)tableView {
  88. if (!_tableView) {
  89. _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, navHeight, ScreenWidth, ScreenHeight - navHeight) style:UITableViewStyleGrouped];
  90. _tableView.delegate = self;
  91. _tableView.dataSource = self;
  92. _tableView.tableHeaderView.userInteractionEnabled = YES;
  93. _tableView.tableHeaderView = self.headerView;
  94. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  95. // [_tableView registerClass:[MTContactsHomeTableViewCell class] forCellReuseIdentifier:@"MTContactsHomeTableViewCellID"];
  96. _tableView.showsVerticalScrollIndicator = NO;
  97. _tableView.backgroundColor = [UIColor clearColor];
  98. // _tableView.estimatedRowHeight = 160;
  99. // _tableView.rowHeight = UITableViewAutomaticDimension;
  100. }
  101. return _tableView;
  102. }
  103. #pragma mark -- Constraints
  104. -(void)updateViewConstraints{
  105. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  106. make.top.mas_equalTo(navHeight);
  107. make.left.right.bottom.equalTo(self.view);
  108. }];
  109. [super updateViewConstraints];
  110. }
  111. #pragma mark - UITableViewDataSource & UITableViewDelegate
  112. -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  113. return 2;
  114. }
  115. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
  116. return kNumFrom375(24);
  117. }
  118. - (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section{
  119. return 0.01f;
  120. }
  121. - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  122. {
  123. //自定义Header标题
  124. UIView* myView = [[UIView alloc] init];
  125. myView.backgroundColor = HColor(@"#F6F6F6");
  126. UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(kNumFrom375(18), kNumFrom375(5), kNumFrom375(100), kNumFrom375(15))];
  127. titleLabel.textColor= HColor(@"#999F9D");
  128. NSString *title = @"A";
  129. titleLabel.text=title;
  130. [myView addSubview:titleLabel];
  131. return myView;
  132. }
  133. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  134. return 10;
  135. }
  136. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  137. return kNumFrom375(60);
  138. }
  139. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  140. // MTContactsHomeTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTContactsHomeTableViewCellID" forIndexPath:indexPath];
  141. //
  142. // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row];
  143. // return cell;
  144. static NSString *cellID = @"MTContactsHomeTableViewCell";
  145. MTContactsHomeTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  146. if (!cell)
  147. {
  148. [tableView registerNib:[UINib nibWithNibName:cellID bundle:nil] forCellReuseIdentifier:cellID];
  149. cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  150. }
  151. cell.selectionStyle=UITableViewCellSelectionStyleNone;
  152. // [cell layoutIfNeeded];
  153. // cell.model = self.viewModel.listArray[indexPath.row];
  154. return cell;
  155. }
  156. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  157. MTFriendInfoViewController *vc = [[MTFriendInfoViewController alloc]init];
  158. [CURRENT_NAV pushViewController:vc animated:YES];
  159. // NSString *ss = @"师傅已接单超过30分钟,您需要支付30元空跑费";
  160. // UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"取消支付" message:ss preferredStyle:UIAlertControllerStyleActionSheet];
  161. // [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];
  162. // [alertController addAction:[UIAlertAction actionWithTitle:@"微信支付" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  163. //// [self payWithOrderNum:ord andType:1];
  164. // }]];
  165. // [alertController addAction:[UIAlertAction actionWithTitle:@"支付宝支付" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  166. //// [self payWithOrderNum:ord andType:2];
  167. // }]];
  168. // [alertController addAction:[UIAlertAction actionWithTitle:@"余额支付" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  169. //// [self payWithOrderNum:ord andType:3];
  170. // }]];
  171. // [self presentViewController:alertController animated:YES completion:nil];
  172. }
  173. #pragma mark---tableView索引相关设置----
  174. //添加TableView头视图标题
  175. - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
  176. {
  177. // NSDictionary *dict = self.dataArray[section];
  178. // NSString *title = dict[@"firstLetter"];
  179. return @"A";
  180. }
  181. // 返回索引的数据
  182. - (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView {
  183. return @[@"A",@"B"];
  184. }
  185. //点击索引后跳转到对应的section
  186. - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
  187. return index;
  188. }
  189. @end