MTSeachFriendViewController.m 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. //
  2. // MTSeachFriendViewController.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTSeachFriendViewController.h"
  8. #import "MTSearchNavView.h"
  9. #import "MTSeachFriendNoView.h"
  10. #import "MTMsgSearchTableViewCell.h"
  11. #import "MTFriendInfoViewController.h"
  12. @interface MTSeachFriendViewController ()<UITableViewDelegate,UITableViewDataSource>
  13. @property (strong, nonatomic) MTBaseTableView *tableView;
  14. @property (nonatomic, strong) MTSeachFriendViewModel *viewModel;
  15. @property (nonatomic, strong) MTSeachFriendNoView *noView;
  16. @property (nonatomic, strong) MTSearchNavView *navView;
  17. @end
  18. @implementation MTSeachFriendViewController
  19. #pragma mark -- system
  20. -(void)viewWillAppear:(BOOL)animated{
  21. [super viewWillAppear:animated];
  22. }
  23. - (void)viewDidLoad {
  24. [super viewDidLoad];
  25. self.view.backgroundColor = HColor(@"#F0F0F0");
  26. [self.view addSubview:self.tableView];
  27. [self.navgationView removeFromSuperview];
  28. self.navView = [[MTSearchNavView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, navHeight)];
  29. [self.view addSubview:self.navView];
  30. [self.navView mas_makeConstraints:^(MASConstraintMaker *make) {
  31. make.left.right.top.mas_equalTo(self.view);
  32. make.height.mas_equalTo(navHeight);
  33. }];
  34. self.noView = [[MTSeachFriendNoView alloc]initWithFrame:CGRectZero];
  35. self.noView.hidden = YES;
  36. [self.view addSubview:self.noView];
  37. [self.noView mas_makeConstraints:^(MASConstraintMaker *make) {
  38. make.top.mas_equalTo(navHeight);
  39. make.left.right.bottom.mas_equalTo(self.view);
  40. }];
  41. }
  42. -(void)mt_layoutNavigation{
  43. [self.navgationView removeFromSuperview];
  44. }
  45. - (void)mt_bindViewModel{
  46. // @weakify(self)
  47. [self.viewModel.refreshUISubject subscribeNext:^(id _Nullable x) {
  48. // @strongify(self)
  49. [self.tableView.mj_header endRefreshing];
  50. }];
  51. [self.viewModel.errorSubject subscribeNext:^(id _Nullable x) {
  52. // @strongify(self)
  53. }];
  54. }
  55. #pragma mark -- lazy
  56. -(MTSeachFriendViewModel *)viewModel{
  57. if (!_viewModel) {
  58. _viewModel = [[MTSeachFriendViewModel alloc]init];
  59. _viewModel.pageIndex = 1;
  60. }
  61. return _viewModel;
  62. }
  63. - (MTBaseTableView *)tableView {
  64. if (!_tableView) {
  65. _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, navHeight, ScreenWidth, ScreenHeight - navHeight) style:UITableViewStylePlain];
  66. _tableView.delegate = self;
  67. _tableView.dataSource = self;
  68. _tableView.tableHeaderView.userInteractionEnabled = YES;
  69. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  70. // [_tableView registerClass:[MTSeachFriendTableViewCell class] forCellReuseIdentifier:@"MTSeachFriendTableViewCellID"];
  71. _tableView.showsVerticalScrollIndicator = NO;
  72. _tableView.backgroundColor = [UIColor clearColor];
  73. // _tableView.estimatedRowHeight = 160;
  74. // _tableView.rowHeight = UITableViewAutomaticDimension;
  75. }
  76. return _tableView;
  77. }
  78. #pragma mark -- Constraints
  79. -(void)updateViewConstraints{
  80. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  81. make.top.mas_equalTo(navHeight);
  82. make.left.right.bottom.equalTo(self.view);
  83. }];
  84. [super updateViewConstraints];
  85. }
  86. #pragma mark - UITableViewDataSource & UITableViewDelegate
  87. -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
  88. return kNumFrom375(54);
  89. }
  90. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
  91. //自定义Header标题
  92. UIView* myView = [[UIView alloc] init];
  93. myView.backgroundColor = HColor(@"#F6F6F6");
  94. UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(kNumFrom375(18), kNumFrom375(27), kNumFrom375(100), kNumFrom375(18))];
  95. titleLabel.font = font(13);
  96. titleLabel.textColor= HColor(@"#999F9D");
  97. if (section == 0) {
  98. titleLabel.text=@"联系人";
  99. }else{
  100. titleLabel.text=@"群聊";
  101. }
  102. [myView addSubview:titleLabel];
  103. return myView;
  104. }
  105. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  106. return 10;
  107. }
  108. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  109. return kNumFrom375(47);
  110. }
  111. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  112. // MTSeachFriendTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTSeachFriendTableViewCellID" forIndexPath:indexPath];
  113. //
  114. // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row];
  115. // return cell;
  116. static NSString *cellID = @"MTMsgSearchTableViewCell";
  117. MTMsgSearchTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  118. if (!cell)
  119. {
  120. [tableView registerNib:[UINib nibWithNibName:cellID bundle:nil] forCellReuseIdentifier:cellID];
  121. cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  122. }
  123. cell.selectionStyle=UITableViewCellSelectionStyleNone;
  124. // [cell layoutIfNeeded];
  125. // cell.model = self.viewModel.listArray[indexPath.row];
  126. return cell;
  127. }
  128. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  129. MTFriendInfoViewController *vc = [[MTFriendInfoViewController alloc]init];
  130. [CURRENT_NAV pushViewController:vc animated:YES];
  131. }
  132. @end