MTCreatQunViewController.m 5.7 KB

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