HomeDayGoodArticeVC.m 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //
  2. // HomeDayGoodArticeVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/23.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeDayGoodArticeVC.h"
  9. #import "HomeSubModel.h"
  10. #import "HomeSubItemModel.h"
  11. #import "BookSubArticeCell.h"
  12. @interface HomeDayGoodArticeVC ()<UITableViewDelegate,UITableViewDataSource>
  13. @property (nonatomic, strong) UITableView * tableView;
  14. @property (nonatomic, strong) NSMutableArray * dataSource;
  15. @end
  16. @implementation HomeDayGoodArticeVC
  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_GooDText) parameters:@{@"StyleCss":self.style,@"Page":@(1),@"PerPage":@20} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  48. NSLog(@"%@",responseObject);
  49. if ([responseObject isKindOfClass:[NSDictionary class]]) {
  50. HomeSubModel *model = [HomeSubModel modelWithDictionary:responseObject];
  51. for (NSDictionary * dict in model.Items) {
  52. HomeSubItemModel *smodel = [HomeSubItemModel modelWithDictionary:dict];
  53. [weakSelf.dataSource addObject:smodel];
  54. }
  55. }
  56. dispatch_async(dispatch_get_main_queue(), ^{
  57. [weakSelf.tableView reloadData];
  58. });
  59. } failure:^(NSError * _Nonnull error) {
  60. }];
  61. }
  62. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  63. {
  64. return 1;
  65. }
  66. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  67. {
  68. return self.dataSource.count;
  69. }
  70. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  71. {
  72. return UITableViewAutomaticDimension;
  73. }
  74. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  75. {
  76. HomeSubItemModel *model = self.dataSource[indexPath.row];
  77. BookSubArticeCell * cell = [BookSubArticeCell configCell:tableView indexPath:indexPath];
  78. [cell setDataWithModel:model];
  79. return cell;
  80. }
  81. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  82. {
  83. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  84. }
  85. @end