123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- //
- // MTMsgListViewController.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTMsgListViewController.h"
- #import "MTMsgListTableViewCell.h"
- @interface MTMsgListViewController ()<UITableViewDelegate,UITableViewDataSource>
- @property (strong, nonatomic) MTBaseTableView *tableView;
- @property (nonatomic, strong) MTMsgListViewModel *viewModel;
- @end
- @implementation MTMsgListViewController
- #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.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
- -(MTMsgListViewModel *)viewModel{
- if (!_viewModel) {
- _viewModel = [[MTMsgListViewModel alloc]init];
- _viewModel.pageIndex = 1;
- }
- return _viewModel;
- }
- - (MTBaseTableView *)tableView {
- if (!_tableView) {
- _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight - navHeight) style:UITableViewStylePlain];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.tableHeaderView.userInteractionEnabled = YES;
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- // [_tableView registerClass:[MTMsgListTableViewCell class] forCellReuseIdentifier:@"MTMsgListTableViewCellID"];
- _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(0);
- make.left.right.bottom.equalTo(self.view);
- }];
- [super updateViewConstraints];
- }
- #pragma mark - UITableViewDataSource & UITableViewDelegate
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return 20;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- return kNumFrom375(53);
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- // MTMsgListTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTMsgListTableViewCellID" forIndexPath:indexPath];
- //
- // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row];
- // return cell;
- static NSString *cellID = @"MTMsgListTableViewCell";
- MTMsgListTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID];
- if (!cell)
- {
- [tableView registerNib:[UINib nibWithNibName:cellID bundle:nil] forCellReuseIdentifier:cellID];
- cell = [tableView dequeueReusableCellWithIdentifier:cellID];
- }
- cell.selectionStyle=UITableViewCellSelectionStyleNone;
- // [cell layoutIfNeeded];
- return cell;
- }
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
-
- }
- @end
|