123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- //
- // MTSeachFriendViewController.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTSeachFriendViewController.h"
- #import "MTSearchNavView.h"
- #import "MTSeachFriendNoView.h"
- #import "MTMsgSearchTableViewCell.h"
- #import "MTFriendInfoViewController.h"
- @interface MTSeachFriendViewController ()<UITableViewDelegate,UITableViewDataSource>
- @property (strong, nonatomic) MTBaseTableView *tableView;
- @property (nonatomic, strong) MTSeachFriendViewModel *viewModel;
- @property (nonatomic, strong) MTSeachFriendNoView *noView;
- @property (nonatomic, strong) MTSearchNavView *navView;
- @end
- @implementation MTSeachFriendViewController
- #pragma mark -- system
- -(void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.view.backgroundColor = HColor(@"#F0F0F0");
- [self.view addSubview:self.tableView];
- [self.navgationView removeFromSuperview];
- self.navView = [[MTSearchNavView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, navHeight)];
- [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.noView = [[MTSeachFriendNoView alloc]initWithFrame:CGRectZero];
- self.noView.hidden = YES;
- [self.view addSubview:self.noView];
- [self.noView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.mas_equalTo(navHeight);
- make.left.right.bottom.mas_equalTo(self.view);
- }];
- }
- -(void)mt_layoutNavigation{
- [self.navgationView removeFromSuperview];
- }
- - (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
- -(MTSeachFriendViewModel *)viewModel{
- if (!_viewModel) {
- _viewModel = [[MTSeachFriendViewModel alloc]init];
- _viewModel.pageIndex = 1;
- }
- return _viewModel;
- }
- - (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.separatorStyle = UITableViewCellSeparatorStyleNone;
- // [_tableView registerClass:[MTSeachFriendTableViewCell class] forCellReuseIdentifier:@"MTSeachFriendTableViewCellID"];
- _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
- -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
- return kNumFrom375(54);
- }
- - (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(27), kNumFrom375(100), kNumFrom375(18))];
- titleLabel.font = font(13);
- titleLabel.textColor= HColor(@"#999F9D");
- if (section == 0) {
- titleLabel.text=@"联系人";
- }else{
- titleLabel.text=@"群聊";
- }
- [myView addSubview:titleLabel];
-
- return myView;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return 10;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return kNumFrom375(47);
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- // MTSeachFriendTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTSeachFriendTableViewCellID" forIndexPath:indexPath];
- //
- // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row];
- // return cell;
- static NSString *cellID = @"MTMsgSearchTableViewCell";
- MTMsgSearchTableViewCell * 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];
- }
- @end
|