123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- //
- // MTContactsHomeViewController.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTContactsHomeViewController.h"
- #import "MTContactsHomeHeaderView.h"
- #import "MTContactsHomeTableViewCell.h"
- #import "MTLeftNavView.h"
- #import "MTMsgMoreView.h"
- #import "MTSeachFriendViewController.h"
- #import "MTAddFriendViewController.h"
- #import "MTFriendInfoViewController.h"
- #import "MTCreatQunViewController.h"
- @interface MTContactsHomeViewController ()<UITableViewDelegate,UITableViewDataSource>
- @property (strong, nonatomic) MTBaseTableView *tableView;
- @property (nonatomic, strong) MTContactsHomeViewModel *viewModel;
- @property (nonatomic, strong) MTContactsHomeHeaderView *headerView;
- @property (nonatomic, strong) MTLeftNavView *navView;
- @end
- @implementation MTContactsHomeViewController
- #pragma mark -- system
- -(void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
- [self.view addSubview:self.tableView];
-
- [self.navgationView removeFromSuperview];
- self.navView = [[MTLeftNavView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, navHeight)];
- self.navView.titleL.text = @"通讯录";
- [self.navView.rightOneBtn setImage:ImageNamed(@"more_icon") forState:UIControlStateNormal];
- [self.navView.rightTwoBtn setImage:ImageNamed(@"find_icon") forState:UIControlStateNormal];
- [self.view addSubview:self.navView];
- [self.navView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.right.top.mas_equalTo(self.view);
- make.height.mas_equalTo(navHeight);
- }];
- [[self.navView.rightOneBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
- MTMsgMoreView *view = [[MTMsgMoreView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight)];
- [[view.saoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
- [view removeFromSuperview];
- }];
- [[view.qunliaoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
- [view removeFromSuperview];
- MTCreatQunViewController *vc = [[MTCreatQunViewController alloc]init];
- [CURRENT_NAV pushViewController:vc animated:YES];
- }];
- [[view.addBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
- [view removeFromSuperview];
- MTAddFriendViewController *vc = [[MTAddFriendViewController alloc]init];
- [CURRENT_NAV pushViewController:vc animated:YES];
- }];
- [KWINDOW addSubview:view];
- }];
- [[self.navView.rightTwoBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
- MTSeachFriendViewController *vc = [[MTSeachFriendViewController alloc]init];
- [CURRENT_NAV pushViewController:vc animated:YES];
- }];
- }
- - (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
- -(MTContactsHomeViewModel *)viewModel{
- if (!_viewModel) {
- _viewModel = [[MTContactsHomeViewModel alloc]init];
- _viewModel.pageIndex = 1;
- }
- return _viewModel;
- }
- -(MTContactsHomeHeaderView *)headerView{
- if (!_headerView) {
- _headerView = [[MTContactsHomeHeaderView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, kNumFrom375(175))];
- _headerView.viewModel = self.viewModel;
- }
- return _headerView;
- }
- - (MTBaseTableView *)tableView {
- if (!_tableView) {
- _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, navHeight, ScreenWidth, ScreenHeight - navHeight) style:UITableViewStyleGrouped];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.tableHeaderView.userInteractionEnabled = YES;
- _tableView.tableHeaderView = self.headerView;
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- // [_tableView registerClass:[MTContactsHomeTableViewCell class] forCellReuseIdentifier:@"MTContactsHomeTableViewCellID"];
- _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);
- }
- - (CGFloat)tableView:(UITableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section{
- return 0.01f;
- }
- - (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 = @"MTContactsHomeTableViewCell";
- MTContactsHomeTableViewCell * 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{
- MTFriendInfoViewController *vc = [[MTFriendInfoViewController alloc]init];
- [CURRENT_NAV pushViewController:vc animated:YES];
- // NSString *ss = @"师傅已接单超过30分钟,您需要支付30元空跑费";
- // UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"取消支付" message:ss preferredStyle:UIAlertControllerStyleActionSheet];
- // [alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];
- // [alertController addAction:[UIAlertAction actionWithTitle:@"微信支付" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- //// [self payWithOrderNum:ord andType:1];
- // }]];
- // [alertController addAction:[UIAlertAction actionWithTitle:@"支付宝支付" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- //// [self payWithOrderNum:ord andType:2];
- // }]];
- // [alertController addAction:[UIAlertAction actionWithTitle:@"余额支付" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- //// [self payWithOrderNum:ord andType:3];
- // }]];
- // [self presentViewController:alertController animated:YES completion:nil];
- }
- #pragma mark---tableView索引相关设置----
- //添加TableView头视图标题
- - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
- {
- // NSDictionary *dict = self.dataArray[section];
- // NSString *title = dict[@"firstLetter"];
- return @"A";
- }
- // 返回索引的数据
- - (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView {
- return @[@"A",@"B"];
- }
- //点击索引后跳转到对应的section
- - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
- return index;
- }
- @end
|