HomeProblemVC.m 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. //
  2. // HomeProblemVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/23.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeProblemVC.h"
  9. #import "HomeSubModel.h"
  10. #import "HomeSubItemModel.h"
  11. #import "HomeProblemTopCell.h"
  12. @interface HomeProblemVC ()<UITableViewDelegate,UITableViewDataSource>
  13. @property (nonatomic, strong) UITableView * tableView;
  14. @property (nonatomic, strong) NSMutableArray * dataSource;
  15. @end
  16. @implementation HomeProblemVC
  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] GETUrl:Host(API_APP_RANDOM_DAY_Skill) parameters:@{} 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. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_DAY_Skill) parameters:@{@"Page":@(1),@"PerPage":@20} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  56. NSLog(@"++++%@",responseObject);
  57. dispatch_async(dispatch_get_main_queue(), ^{
  58. [weakSelf.tableView reloadData];
  59. });
  60. } failure:^(NSError * _Nonnull error) {
  61. }];
  62. } failure:^(NSError * _Nonnull error) {
  63. }];
  64. }
  65. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  66. {
  67. return 1;
  68. }
  69. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  70. {
  71. return self.dataSource.count;
  72. }
  73. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  74. {
  75. return UITableViewAutomaticDimension;
  76. }
  77. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  78. {
  79. if (indexPath.row == 0) {
  80. HomeProblemTopCell * cell = [HomeProblemTopCell configCell0:tableView indexPath:indexPath];
  81. cell.height.constant = -2.f;
  82. [cell setData];
  83. return cell;
  84. }else{
  85. HomeProblemTopCell * cell = [HomeProblemTopCell configCell1:tableView indexPath:indexPath];
  86. return cell;
  87. }
  88. }
  89. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  90. {
  91. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  92. }
  93. @end