HomeSpeakVC.m 3.1 KB

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