HomeGoodBookCell.m 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. //
  2. // HomeGoodBookCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/20.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeGoodBookCell.h"
  9. #import "BookHomeSubCell.h"
  10. #import "HomeGoodBookCollectCell.h"
  11. @implementation HomeGoodBookCell
  12. - (void)awakeFromNib {
  13. [super awakeFromNib];
  14. self.collectionView.delegate = self;
  15. self.collectionView.dataSource = self;
  16. self.collectionView.showsVerticalScrollIndicator = NO;
  17. self.collectionView.showsHorizontalScrollIndicator = NO;
  18. [self.collectionView registerNib:[UINib nibWithNibName:@"BookHomeSubCell" bundle:nil] forCellWithReuseIdentifier:@"BookHomeSubCell"];
  19. [self.collectionView registerNib:[UINib nibWithNibName:@"HomeGoodBookCollectCell" bundle:nil] forCellWithReuseIdentifier:@"HomeGoodBookCollectCell"];
  20. }
  21. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  22. [super setSelected:selected animated:animated];
  23. // Configure the view for the selected state
  24. }
  25. + (HomeGoodBookCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  26. static NSString *cellIdentifer = @"HomeGoodBookCell";
  27. HomeGoodBookCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  28. if (cell == nil) {
  29. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeGoodBookCell" owner:nil options:nil] objectAtIndex:0];
  30. }
  31. return cell;
  32. }
  33. - (void)setDataWithItem:(NSInteger)Item isUnUser:(BOOL)isUser
  34. {
  35. self.type = Item % 2 == 0 ? 0 : 1;
  36. if (self.type == 0) {
  37. self.collectH.constant = 101.f * 3;
  38. UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
  39. layout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
  40. [self.collectionView setCollectionViewLayout:layout];
  41. }else{
  42. self.collectH.constant = 170.f * 2;
  43. UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
  44. layout.sectionInset = UIEdgeInsetsMake(0, 15, 0, 15);
  45. [self.collectionView setCollectionViewLayout:layout];
  46. }
  47. [self.collectionView setContentOffset:CGPointZero animated:NO];
  48. [self.collectionView reloadData];
  49. WS(weakSelf);
  50. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  51. [weakSelf.collectionView reloadData];
  52. });
  53. }
  54. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
  55. {
  56. return 0.f;
  57. }
  58. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
  59. {
  60. return self.type == 0 ? 0.f : 15.f;
  61. }
  62. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  63. {
  64. return self.type == 0 ? 3 : 6;
  65. }
  66. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
  67. {
  68. return 1;
  69. }
  70. -(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  71. {
  72. if (self.type == 0) {
  73. return CGSizeMake(SCREEN_WIDTH, 101);
  74. }else{
  75. return CGSizeMake((SCREEN_WIDTH - 60) / 3, 170);
  76. }
  77. }
  78. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  79. {
  80. if (self.type == 0) {
  81. BookHomeSubCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"BookHomeSubCell" forIndexPath:indexPath];
  82. [cell setData];
  83. return cell;
  84. }else{
  85. HomeGoodBookCollectCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"HomeGoodBookCollectCell" forIndexPath:indexPath];
  86. return cell;
  87. }
  88. }
  89. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
  90. {
  91. if (self.ClickIndexBlock) {
  92. self.ClickIndexBlock();
  93. }
  94. }
  95. @end