MTMsgListViewController.m 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. //
  2. // MTMsgListViewController.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTMsgListViewController.h"
  8. #import "MTMsgListTableViewCell.h"
  9. @interface MTMsgListViewController ()<UITableViewDelegate,UITableViewDataSource>
  10. @property (strong, nonatomic) MTBaseTableView *tableView;
  11. @property (nonatomic, strong) MTMsgListViewModel *viewModel;
  12. @end
  13. @implementation MTMsgListViewController
  14. #pragma mark -- system
  15. -(void)viewWillAppear:(BOOL)animated{
  16. [super viewWillAppear:animated];
  17. }
  18. - (void)viewDidLoad {
  19. [super viewDidLoad];
  20. [self.view addSubview:self.tableView];
  21. self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  22. }];
  23. }
  24. -(void)mt_layoutNavigation{
  25. [self.navgationView removeFromSuperview];
  26. }
  27. - (void)mt_bindViewModel{
  28. // @weakify(self)
  29. [self.viewModel.refreshUISubject subscribeNext:^(id _Nullable x) {
  30. // @strongify(self)
  31. [self.tableView.mj_header endRefreshing];
  32. }];
  33. [self.viewModel.errorSubject subscribeNext:^(id _Nullable x) {
  34. // @strongify(self)
  35. }];
  36. }
  37. #pragma mark -- lazy
  38. -(MTMsgListViewModel *)viewModel{
  39. if (!_viewModel) {
  40. _viewModel = [[MTMsgListViewModel alloc]init];
  41. _viewModel.pageIndex = 1;
  42. }
  43. return _viewModel;
  44. }
  45. - (MTBaseTableView *)tableView {
  46. if (!_tableView) {
  47. _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight - navHeight) style:UITableViewStylePlain];
  48. _tableView.delegate = self;
  49. _tableView.dataSource = self;
  50. _tableView.tableHeaderView.userInteractionEnabled = YES;
  51. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  52. // [_tableView registerClass:[MTMsgListTableViewCell class] forCellReuseIdentifier:@"MTMsgListTableViewCellID"];
  53. _tableView.showsVerticalScrollIndicator = NO;
  54. _tableView.backgroundColor = [UIColor clearColor];
  55. // _tableView.estimatedRowHeight = 160;
  56. // _tableView.rowHeight = UITableViewAutomaticDimension;
  57. }
  58. return _tableView;
  59. }
  60. #pragma mark -- Constraints
  61. -(void)updateViewConstraints{
  62. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  63. make.top.mas_equalTo(0);
  64. make.left.right.bottom.equalTo(self.view);
  65. }];
  66. [super updateViewConstraints];
  67. }
  68. #pragma mark - UITableViewDataSource & UITableViewDelegate
  69. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  70. return 20;
  71. }
  72. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  73. return kNumFrom375(53);
  74. }
  75. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  76. // MTMsgListTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTMsgListTableViewCellID" forIndexPath:indexPath];
  77. //
  78. // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row];
  79. // return cell;
  80. static NSString *cellID = @"MTMsgListTableViewCell";
  81. MTMsgListTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  82. if (!cell)
  83. {
  84. [tableView registerNib:[UINib nibWithNibName:cellID bundle:nil] forCellReuseIdentifier:cellID];
  85. cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  86. }
  87. cell.selectionStyle=UITableViewCellSelectionStyleNone;
  88. // [cell layoutIfNeeded];
  89. return cell;
  90. }
  91. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  92. }
  93. @end