GroupSynopsisVC.m 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. //
  2. // GroupSynopsisVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/15.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "GroupSynopsisVC.h"
  9. #import "GroupSynopsisCell.h"
  10. @interface GroupSynopsisVC ()<UITableViewDelegate,UITableViewDataSource>
  11. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  12. @property (weak, nonatomic) IBOutlet UIButton *joinBtn;
  13. @end
  14. @implementation GroupSynopsisVC
  15. +(GroupSynopsisVC *)initGroupSynopsisVC{
  16. GroupSynopsisVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"GroupSynopsisVC"];
  17. return controller;
  18. }
  19. - (void)viewDidLoad {
  20. [super viewDidLoad];
  21. self.fd_prefersNavigationBarHidden = YES;
  22. self.tableView.delegate = self;
  23. self.tableView.dataSource = self;
  24. }
  25. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  26. {
  27. return UITableViewAutomaticDimension;
  28. }
  29. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  30. {
  31. return 4;
  32. }
  33. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  34. {
  35. switch (indexPath.row) {
  36. case 0:
  37. {
  38. GroupSynopsisCell * cell = [GroupSynopsisCell configCell3:tableView indexPath:indexPath];
  39. [cell setContentText:@""];
  40. [cell.moreBtn setAction:^{
  41. }];
  42. return cell;
  43. }
  44. break;
  45. case 1:
  46. {
  47. GroupSynopsisCell * cell = [GroupSynopsisCell configCell0:tableView indexPath:indexPath];
  48. [cell setData];
  49. return cell;
  50. }
  51. break;
  52. case 2:
  53. {
  54. GroupSynopsisCell * cell = [GroupSynopsisCell configCell1:tableView indexPath:indexPath];
  55. [cell setCollData];
  56. return cell;
  57. }
  58. break;
  59. default:
  60. {
  61. GroupSynopsisCell * cell = [GroupSynopsisCell configCell2:tableView indexPath:indexPath];
  62. return cell;
  63. }
  64. break;
  65. }
  66. }
  67. @end