HomeWeiCousreCell.m 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. //
  2. // HomeWeiCousreCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/16.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeWeiCousreCell.h"
  9. #import "HomeWeiCousreCollectCell.h"
  10. #import "BookAlertModel.h"
  11. @implementation HomeWeiCousreCell
  12. - (void)awakeFromNib {
  13. [super awakeFromNib];
  14. self.imgV.layer.cornerRadius = 2.5f;
  15. self.imgV.layer.masksToBounds = YES;
  16. }
  17. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  18. [super setSelected:selected animated:animated];
  19. // Configure the view for the selected state
  20. }
  21. + (HomeWeiCousreCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  22. static NSString *cellIdentifer = @"HomeWeiCousreCell0";
  23. HomeWeiCousreCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  24. if (cell == nil) {
  25. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeWeiCousreCell" owner:nil options:nil] objectAtIndex:0];
  26. }
  27. return cell;
  28. }
  29. + (HomeWeiCousreCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  30. static NSString *cellIdentifer = @"HomeWeiCousreCell1";
  31. HomeWeiCousreCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  32. if (cell == nil) {
  33. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeWeiCousreCell" owner:nil options:nil] objectAtIndex:1];
  34. }
  35. return cell;
  36. }
  37. + (HomeWeiCousreCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  38. static NSString *cellIdentifer = @"HomeWeiCousreCell2";
  39. HomeWeiCousreCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  40. if (cell == nil) {
  41. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeWeiCousreCell" owner:nil options:nil] objectAtIndex:2];
  42. }
  43. return cell;
  44. }
  45. + (HomeWeiCousreCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  46. static NSString *cellIdentifer = @"HomeWeiCousreCell3";
  47. HomeWeiCousreCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  48. if (cell == nil) {
  49. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeWeiCousreCell" owner:nil options:nil] objectAtIndex:3];
  50. }
  51. return cell;
  52. }
  53. + (HomeWeiCousreCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  54. static NSString *cellIdentifer = @"HomeWeiCousreCell4";
  55. HomeWeiCousreCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  56. if (cell == nil) {
  57. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeWeiCousreCell" owner:nil options:nil] objectAtIndex:4];
  58. }
  59. return cell;
  60. }
  61. - (void)setDataWithModel:(HomeSubItemModel *)model
  62. {
  63. [self.imgV sd_setImageWithURL:[NSURL URLWithString:model.ImageUrls] placeholderImage:IMG(@"img_placeHolder")];
  64. self.titleL.text = model.Title;
  65. self.subTitleL.text = model.Summary;
  66. self.nameL.text = model.Author;
  67. self.numL.text = [NSString stringWithFormat:@"%ld",model.ReadCount];
  68. }
  69. - (void)setDataVideoModel:(BookChanelRightModel *)model
  70. {
  71. [self.imgV sd_setImageWithURL:[NSURL URLWithString:model.ImageUrls] placeholderImage:IMG(@"img_placeHolder")];
  72. self.titleL.text = model.Title;
  73. self.subTitleL.text = model.Summary;
  74. self.nameL.text = model.Author;
  75. self.playTimeL.text = model.Duration;
  76. self.numL.text = [NSString stringWithFormat:@"%ld",model.ReadCount];
  77. }
  78. - (void)setDataRightModel:(BookChanelRightModel *)model
  79. {
  80. self.titleL.text = model.Name;
  81. self.subTitleL.text = model.ExpandName;
  82. }
  83. - (void)setCollData
  84. {
  85. self.collectionView.delegate = self;
  86. self.collectionView.dataSource = self;
  87. self.collectionView.showsVerticalScrollIndicator = NO;
  88. self.collectionView.showsHorizontalScrollIndicator = NO;
  89. [self.collectionView registerNib:[UINib nibWithNibName:@"HomeWeiCousreCollectCell" bundle:nil] forCellWithReuseIdentifier:@"HomeWeiCousreCollectCell"];
  90. UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
  91. layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
  92. layout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
  93. [self.collectionView setCollectionViewLayout:layout];
  94. [self.collectionView setContentOffset:CGPointZero animated:NO];
  95. [self setArray];
  96. [self.collectionView reloadData];
  97. }
  98. - (void)setArray
  99. {
  100. self.dataArray = [NSMutableArray array];
  101. for (NSInteger i = 0 ; i < 8; i ++) {
  102. BookAlertModel * model = [[BookAlertModel alloc] init];
  103. model.title = @"高中生将面临5 种新考试!";
  104. model.isSelect = i == 0 ? YES : NO;
  105. [self.dataArray addObject:model];
  106. }
  107. }
  108. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
  109. {
  110. return 15.f;
  111. }
  112. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
  113. {
  114. return 15.f;
  115. }
  116. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  117. {
  118. return self.dataArray.count;
  119. }
  120. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
  121. {
  122. return 1;
  123. }
  124. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  125. {
  126. return CGSizeMake(135, 80);
  127. }
  128. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  129. {
  130. HomeWeiCousreCollectCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"HomeWeiCousreCollectCell" forIndexPath:indexPath];
  131. BookAlertModel * model = [self.dataArray objectAtIndex:indexPath.row];
  132. [cell setDataWithTitle:model.title isSelect:model.isSelect];
  133. return cell;
  134. }
  135. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
  136. {
  137. [collectionView deselectItemAtIndexPath:indexPath animated:YES];
  138. WS(weakSelf);
  139. BookAlertModel * model = [self.dataArray objectAtIndex:indexPath.row];
  140. for (BookAlertModel * smodel in self.dataArray) {
  141. smodel.isSelect = NO;
  142. }
  143. model.isSelect = YES;
  144. [self.collectionView reloadData];
  145. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  146. [weakSelf.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];
  147. });
  148. }
  149. @end