HomeUserVC.m 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. //
  2. // HomeMingShiVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/23.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeUserVC.h"
  9. #import "HomeSubModel.h"
  10. #import "HomeSubItemModel.h"
  11. #import "HomeUserPrivilegeCell.h"
  12. @interface HomeUserVC ()<UITableViewDelegate,UITableViewDataSource>
  13. @property (nonatomic, strong) UITableView * tableView;
  14. @property (nonatomic, strong) NSMutableArray * dataSource;
  15. @end
  16. @implementation HomeUserVC
  17. - (void)viewDidLoad {
  18. [super viewDidLoad];
  19. [self.view addSubview:self.tableView];
  20. self.tableView.delegate = self;
  21. self.tableView.dataSource = self;
  22. [self getData];
  23. }
  24. - (void)setHeight:(CGFloat)height
  25. {
  26. [self.tableView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, height - 45)];
  27. }
  28. - (UITableView *)tableView
  29. {
  30. if (!_tableView) {
  31. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  32. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  33. _tableView.showsVerticalScrollIndicator = NO;
  34. }
  35. return _tableView;
  36. }
  37. - (NSMutableArray *)dataSource
  38. {
  39. if (!_dataSource) {
  40. _dataSource = [NSMutableArray array];
  41. }
  42. return _dataSource;
  43. }
  44. - (void)getData
  45. {
  46. WS(weakSelf);
  47. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_PAGE_CATHEDRA) parameters:@{@"StyleCss":self.style,@"Page":@(1),@"PerPage":@20} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  48. NSLog(@"%@",responseObject);
  49. if ([responseObject isKindOfClass:[NSArray class]]) {
  50. for (NSDictionary * dict in responseObject) {
  51. HomeSubModel *model = [HomeSubModel modelWithDictionary:dict];
  52. [weakSelf.dataSource addObject:model];
  53. }
  54. }
  55. dispatch_async(dispatch_get_main_queue(), ^{
  56. [weakSelf.tableView reloadData];
  57. });
  58. } failure:^(NSError * _Nonnull error) {
  59. }];
  60. }
  61. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  62. {
  63. return 1;
  64. }
  65. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  66. {
  67. return self.dataSource.count;
  68. }
  69. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  70. {
  71. return UITableViewAutomaticDimension;
  72. }
  73. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  74. {
  75. HomeSubModel *model = self.dataSource[indexPath.row];
  76. HomeUserPrivilegeCell * cell = [HomeUserPrivilegeCell configCell:tableView indexPath:indexPath];
  77. if (indexPath.row == 0) {
  78. cell.height.constant = 11.f;
  79. }
  80. BOOL isEnd = self.dataSource.count - 1 == indexPath.row;
  81. [cell setDataWithItem:indexPath.row isUnUser:isEnd model:model];
  82. return cell;
  83. }
  84. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  85. {
  86. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  87. }
  88. @end