GroupSquareVC.m 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. //
  2. // GroupSquareVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/6.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "GroupSquareVC.h"
  9. #import "GroupSquareModel.h"
  10. #import "GroupSquareCell.h"
  11. #import "MyTDGroupView.h"
  12. #import "GroupSynopsisVC.h"
  13. @interface GroupSquareVC ()<UITableViewDelegate,UITableViewDataSource>
  14. @property (weak, nonatomic) IBOutlet UITableView *leftTable;
  15. @property (weak, nonatomic) IBOutlet UITableView *rightTable;
  16. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height;
  18. @property (strong, nonatomic) MyTDGroupView *SearchView;
  19. @property (copy, nonatomic) NSMutableArray *leftArray;
  20. @property (copy, nonatomic) NSMutableArray *rightArray;
  21. @end
  22. @implementation GroupSquareVC
  23. +(GroupSquareVC *)initGroupSquareVC{
  24. GroupSquareVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"GroupSquareVC"];
  25. return controller;
  26. }
  27. - (void)viewDidLoad {
  28. [super viewDidLoad];
  29. self.fd_prefersNavigationBarHidden = YES;
  30. [self.HeadView addSubview:self.SearchView];
  31. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  32. make.top.mas_offset(6);
  33. make.left.right.mas_equalTo(self.HeadView);
  34. make.height.mas_offset(36);
  35. }];
  36. [self.SearchView.button setAction:^{
  37. NSLog(@"SearchView.button");
  38. }];
  39. self.leftTable.delegate = self;
  40. self.leftTable.dataSource = self;
  41. self.rightTable.delegate = self;
  42. self.rightTable.dataSource = self;
  43. [self setData];
  44. self.leftTable.estimatedRowHeight = 0;
  45. self.leftTable.estimatedSectionHeaderHeight = 0;
  46. self.leftTable.estimatedSectionFooterHeight = 0;
  47. self.rightTable.estimatedRowHeight = 0;
  48. self.rightTable.estimatedSectionHeaderHeight = 0;
  49. self.rightTable.estimatedSectionFooterHeight = 0;
  50. [self reloadData];
  51. }
  52. - (void)setData
  53. {
  54. [self.leftArray removeAllObjects];
  55. [self.rightArray removeAllObjects];
  56. GroupSquareModel * model = [[GroupSquareModel alloc] init];
  57. model.Title = @"推荐";
  58. model.isSelect = YES;
  59. [self.leftArray addObject:model];
  60. GroupSquareModel * amodel = [[GroupSquareModel alloc] init];
  61. amodel.Title = @"本周热门";
  62. amodel.isSelect = NO;
  63. [self.leftArray addObject:amodel];
  64. GroupSquareModel * cmodel = [[GroupSquareModel alloc] init];
  65. cmodel.Title = @"阅读馆";
  66. cmodel.isSelect = NO;
  67. [self.leftArray addObject:cmodel];
  68. GroupSquareModel * dmodel = [[GroupSquareModel alloc] init];
  69. dmodel.Title = @"人文自然";
  70. dmodel.isSelect = NO;
  71. [self.leftArray addObject:dmodel];
  72. GroupSquareModel * bmodel = [[GroupSquareModel alloc] init];
  73. bmodel.Title = @"中国历史研究组";
  74. bmodel.Des = @"研究中国上下五千年的文化精粹化精粹";
  75. [self.rightArray addObject:bmodel];
  76. [self.rightArray addObject:bmodel];
  77. [self.rightArray addObject:bmodel];
  78. [self.rightArray addObject:bmodel];
  79. }
  80. - (void)reloadData
  81. {
  82. [self.leftTable reloadData];
  83. [self.rightTable reloadData];
  84. }
  85. #pragma mark -UITableViewDelegate
  86. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  87. {
  88. if (tableView == self.leftTable) {
  89. return self.leftArray.count;
  90. }else{
  91. return self.rightArray.count;
  92. }
  93. }
  94. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  95. {
  96. if (tableView == self.leftTable) {
  97. return [GroupSquareCell configCell0Height];
  98. }else{
  99. return [GroupSquareCell configCell1Height];
  100. }
  101. }
  102. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  103. {
  104. if (tableView == self.leftTable) {
  105. GroupSquareModel * model = [self.leftArray objectAtIndex:indexPath.row];
  106. GroupSquareCell * cell = [GroupSquareCell configCell0:tableView indexPath:indexPath];
  107. [cell setLeftDataModel:model];
  108. return cell;
  109. }else{
  110. GroupSquareModel * model = [self.rightArray objectAtIndex:indexPath.row];
  111. GroupSquareCell * cell = [GroupSquareCell configCell1:tableView indexPath:indexPath];
  112. [cell setRightDataModel:model];
  113. return cell;
  114. }
  115. }
  116. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  117. {
  118. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  119. if (tableView == self.leftTable) {
  120. GroupSquareModel * model = [self.leftArray objectAtIndex:indexPath.row];
  121. if (!model.isSelect) {
  122. [self.leftArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  123. GroupSquareModel * smodel = (GroupSquareModel *)obj;
  124. smodel.isSelect = NO;
  125. }];
  126. model.isSelect = !model.isSelect;
  127. if (indexPath.row == 0) {
  128. self.height.constant = 0.f;
  129. }else{
  130. self.height.constant = 19.f;
  131. }
  132. [self reloadData];
  133. }
  134. }else{
  135. GroupSynopsisVC * vc = [GroupSynopsisVC initGroupSynopsisVC];
  136. [self.navigationController pushViewController:vc animated:YES];
  137. }
  138. }
  139. #pragma mark - Load On Demand
  140. - (NSMutableArray *)leftArray
  141. {
  142. if (!_leftArray) {
  143. _leftArray = [NSMutableArray array];
  144. }
  145. return _leftArray;
  146. }
  147. - (NSMutableArray *)rightArray
  148. {
  149. if (!_rightArray) {
  150. _rightArray = [NSMutableArray array];
  151. }
  152. return _rightArray;
  153. }
  154. - (MyTDGroupView *)SearchView
  155. {
  156. if (!_SearchView) {
  157. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  158. }
  159. return _SearchView;
  160. }
  161. @end