HomeProblemTopCell.m 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. //
  2. // HomeProblemTopCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/19.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeProblemTopCell.h"
  9. #import "HomeProblemTopCollectCell.h"
  10. @implementation HomeProblemTopCell
  11. - (void)awakeFromNib {
  12. [super awakeFromNib];
  13. // Initialization code
  14. }
  15. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  16. [super setSelected:selected animated:animated];
  17. }
  18. + (HomeProblemTopCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  19. static NSString *cellIdentifer = @"HomeProblemTopCell0";
  20. HomeProblemTopCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  21. if (cell == nil) {
  22. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeProblemTopCell" owner:nil options:nil] objectAtIndex:0];
  23. }
  24. return cell;
  25. }
  26. + (HomeProblemTopCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath{
  27. static NSString *cellIdentifer = @"HomeProblemTopCell1";
  28. HomeProblemTopCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifer];
  29. if (cell == nil) {
  30. cell = [[[NSBundle mainBundle] loadNibNamed:@"HomeProblemTopCell" owner:nil options:nil] objectAtIndex:1];
  31. }
  32. return cell;
  33. }
  34. - (void)setData
  35. {
  36. self.collectionView.delegate = self;
  37. self.collectionView.dataSource = self;
  38. self.collectionView.showsVerticalScrollIndicator = NO;
  39. self.collectionView.showsHorizontalScrollIndicator = NO;
  40. [self.collectionView registerNib:[UINib nibWithNibName:@"HomeProblemTopCollectCell" bundle:nil] forCellWithReuseIdentifier:@"HomeProblemTopCollectCell"];
  41. UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
  42. layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
  43. layout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
  44. [self.collectionView setCollectionViewLayout:layout];
  45. [self.collectionView setContentOffset:CGPointZero animated:NO];
  46. [self.collectionView reloadData];
  47. NSString * title = @"“解不等式的方法: 从函数的角度看,就是寻求使一次函数y=kx+b 的值大于(或小于)0的自变量x的取值范围;从函数图象的角度看,就是确定直线y=kx+b在x轴上或下)方部分所有的点的横坐标所构成的集合。应对应一次函数y=kx+b,它…";
  48. NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:title];
  49. NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
  50. [paragraphStyle setLineSpacing:8];
  51. [attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [title length])];
  52. self.topContentL.attributedText = attributedString;
  53. }
  54. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
  55. {
  56. return 5.f;
  57. }
  58. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
  59. {
  60. return 5.f;
  61. }
  62. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
  63. {
  64. return 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. return CGSizeMake(101, 76);
  73. }
  74. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
  75. {
  76. HomeProblemTopCollectCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"HomeProblemTopCollectCell" forIndexPath:indexPath];
  77. return cell;
  78. }
  79. - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
  80. {
  81. [collectionView deselectItemAtIndexPath:indexPath animated:YES];
  82. WS(weakSelf);
  83. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  84. [weakSelf.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionLeft animated:YES];
  85. });
  86. }
  87. @end