MTWorkHomeViewController.m 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //
  2. // MTWorkHomeViewController.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTWorkHomeViewController.h"
  8. #import "MTWorkHomeHeaderView.h"
  9. #import "MTWorkHomeTableViewCell.h"
  10. @interface MTWorkHomeViewController ()<UITableViewDelegate,UITableViewDataSource>
  11. @property (strong, nonatomic) MTBaseTableView *tableView;
  12. @property (nonatomic, strong) MTWorkHomeViewModel *viewModel;
  13. @property (nonatomic, strong) MTWorkHomeHeaderView *headerView;
  14. @end
  15. @implementation MTWorkHomeViewController
  16. #pragma mark -- system
  17. -(void)viewWillAppear:(BOOL)animated{
  18. [super viewWillAppear:animated];
  19. }
  20. - (void)viewDidLoad {
  21. [super viewDidLoad];
  22. [self.view addSubview:self.tableView];
  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. -(MTWorkHomeViewModel *)viewModel{
  39. if (!_viewModel) {
  40. _viewModel = [[MTWorkHomeViewModel alloc]init];
  41. _viewModel.pageIndex = 1;
  42. }
  43. return _viewModel;
  44. }
  45. -(MTWorkHomeHeaderView *)headerView{
  46. if (!_headerView) {
  47. _headerView = [[MTWorkHomeHeaderView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, kNumFrom375(860))];
  48. _headerView.viewModel = self.viewModel;
  49. }
  50. return _headerView;
  51. }
  52. - (MTBaseTableView *)tableView {
  53. if (!_tableView) {
  54. _tableView = [[MTBaseTableView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight - tabBarHeight) style:UITableViewStylePlain];
  55. _tableView.delegate = self;
  56. _tableView.dataSource = self;
  57. _tableView.tableHeaderView.userInteractionEnabled = YES;
  58. _tableView.tableHeaderView = self.headerView;
  59. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  60. // [_tableView registerClass:[MTWorkHomeTableViewCell class] forCellReuseIdentifier:@"MTWorkHomeTableViewCellID"];
  61. _tableView.showsVerticalScrollIndicator = NO;
  62. _tableView.backgroundColor = [UIColor clearColor];
  63. // _tableView.estimatedRowHeight = 160;
  64. // _tableView.rowHeight = UITableViewAutomaticDimension;
  65. }
  66. return _tableView;
  67. }
  68. #pragma mark -- Constraints
  69. -(void)updateViewConstraints{
  70. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  71. make.top.left.right.bottom.equalTo(self.view);
  72. }];
  73. [super updateViewConstraints];
  74. }
  75. #pragma mark - UITableViewDataSource & UITableViewDelegate
  76. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  77. return 0;
  78. }
  79. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  80. return kNumFrom375(60);
  81. }
  82. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  83. // MTWorkHomeTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MTWorkHomeTableViewCellID" forIndexPath:indexPath];
  84. //
  85. // // cell.model = self.viewModel.orderDetail.kuaidi_list[indexPath.row];
  86. // return cell;
  87. static NSString *cellID = @"MTWorkHomeTableViewCell";
  88. MTWorkHomeTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  89. if (!cell)
  90. {
  91. [tableView registerNib:[UINib nibWithNibName:cellID bundle:nil] forCellReuseIdentifier:cellID];
  92. cell = [tableView dequeueReusableCellWithIdentifier:cellID];
  93. }
  94. cell.selectionStyle=UITableViewCellSelectionStyleNone;
  95. // [cell layoutIfNeeded];
  96. cell.model = self.viewModel.listArray[indexPath.row];
  97. return cell;
  98. }
  99. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  100. }
  101. @end