// // MTCreatQunViewController.m // // Created by Simon on 2019/3/22. // Copyright © 2019 Simon. All rights reserved. // #import "MTCreatQunViewController.h" #import "MTCreatQunHeaderView.h" #import "MTCreatQunTableViewCell.h" @interface MTCreatQunViewController () @property (strong, nonatomic) MTBaseTableView *tableView; @property (nonatomic, strong) MTCreatQunViewModel *viewModel; @property (nonatomic, strong) MTCreatQunHeaderView *headerView; @property (nonatomic, strong) UIButton *sendBtn; @end @implementation MTCreatQunViewController #pragma mark -- system -(void)viewWillAppear:(BOOL)animated{ [super viewWillAppear:animated]; } - (void)viewDidLoad { [super viewDidLoad]; [self.view addSubview:self.tableView]; self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{ }]; } -(void)mt_layoutNavigation{ [self setNaviBarTitle:@"发起群聊"]; self.sendBtn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, kNumFrom375(30), kNumFrom375(20))]; [self.sendBtn setTitle:@"发送" forState:UIControlStateNormal]; [self.sendBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; self.sendBtn.titleLabel.font = font(13); [self setNaviBarRightBtn:self.sendBtn]; } - (void)mt_bindViewModel{ // @weakify(self) [self.viewModel.refreshUISubject subscribeNext:^(id _Nullable x) { // @strongify(self) [self.tableView.mj_header endRefreshing]; }]; [self.viewModel.errorSubject subscribeNext:^(id _Nullable x) { // @strongify(self) }]; } #pragma mark -- lazy -(MTCreatQunViewModel *)viewModel{ if (!_viewModel) { _viewModel = [[MTCreatQunViewModel alloc]init]; _viewModel.pageIndex = 1; } return _viewModel; } -(MTCreatQunHeaderView *)headerView{ if (!_headerView) { _headerView = [[MTCreatQunHeaderView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, kNumFrom375(105))]; _headerView.viewModel = self.viewModel; } return _headerView; } - (MTBaseTableView *)tableView { if (!_tableView) { _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, navHeight, ScreenWidth, ScreenHeight - navHeight) style:UITableViewStylePlain]; _tableView.delegate = self; _tableView.dataSource = self; _tableView.tableHeaderView.userInteractionEnabled = YES; _tableView.tableHeaderView = self.headerView; _tableView.separatorStyle = UITableViewCellSeparatorStyleNone; // [_tableView registerClass:[MTCreatQunTableViewCell class] forCellReuseIdentifier:@"MTCreatQunTableViewCellID"]; _tableView.showsVerticalScrollIndicator = NO; _tableView.backgroundColor = [UIColor clearColor]; // _tableView.estimatedRowHeight = 160; // _tableView.rowHeight = UITableViewAutomaticDimension; } return _tableView; } #pragma mark -- Constraints -(void)updateViewConstraints{ [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) { make.top.mas_equalTo(navHeight); make.left.right.bottom.equalTo(self.view); }]; [super updateViewConstraints]; } #pragma mark - UITableViewDataSource & UITableViewDelegate -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ return 2; } - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ return kNumFrom375(24); } - (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { //自定义Header标题 UIView* myView = [[UIView alloc] init]; myView.backgroundColor = HColor(@"#F6F6F6"); UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(kNumFrom375(18), kNumFrom375(5), kNumFrom375(100), kNumFrom375(15))]; titleLabel.textColor= HColor(@"#999F9D"); NSString *title = @"A"; titleLabel.text=title; [myView addSubview:titleLabel]; return myView; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 10; } - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return kNumFrom375(60); } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { // MTContactsHomeTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTContactsHomeTableViewCellID" forIndexPath:indexPath]; // // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row]; // return cell; static NSString *cellID = @"MTCreatQunTableViewCell"; MTCreatQunTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID]; if (!cell) { [tableView registerNib:[UINib nibWithNibName:cellID bundle:nil] forCellReuseIdentifier:cellID]; cell = [tableView dequeueReusableCellWithIdentifier:cellID]; } cell.selectionStyle=UITableViewCellSelectionStyleNone; // [cell layoutIfNeeded]; // cell.model = self.viewModel.listArray[indexPath.row]; return cell; } -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ } #pragma mark---tableView索引相关设置---- //添加TableView头视图标题 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { // NSDictionary *dict = self.dataArray[section]; // NSString *title = dict[@"firstLetter"]; return @"A"; } // 返回索引的数据 - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView { return @[@"A",@"B"]; } //点击索引后跳转到对应的section - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index { return index; } @end