GroupSynopsisCell.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // GroupSynopsisCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/15.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PNCircleChart.h"
  10. #import "CollectionViewSpaceLayout.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface GroupSynopsisCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,SpaceLayoutDelegate>
  13. @property (weak, nonatomic) IBOutlet UILabel *countL;
  14. @property (weak, nonatomic) IBOutlet UIView *BezierOneV;
  15. @property (weak, nonatomic) IBOutlet UILabel *BezierOneL;
  16. @property (weak, nonatomic) IBOutlet UIView *BezierTwoV;
  17. @property (weak, nonatomic) IBOutlet UILabel *BezierTwoL;
  18. @property (weak, nonatomic) IBOutlet UIView *BezierThreeV;
  19. @property (weak, nonatomic) IBOutlet UILabel *BezierThreeL;
  20. @property (weak, nonatomic) IBOutlet UIView *BezierFourV;
  21. @property (weak, nonatomic) IBOutlet UILabel *BezierFourL;
  22. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  23. @property (weak, nonatomic) IBOutlet UIImageView *iconV;
  24. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  25. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  26. @property (weak, nonatomic) IBOutlet UILabel *contentL;
  27. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
  28. @property (weak, nonatomic) IBOutlet UIButton *moreBtn;
  29. @property (strong, nonatomic)CollectionViewSpaceLayout * layout;
  30. + (GroupSynopsisCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  31. + (GroupSynopsisCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  32. + (GroupSynopsisCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  33. + (GroupSynopsisCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  34. - (void)setData;
  35. - (void)setContentText:(NSString *)text;
  36. - (void)setCollData;
  37. @end
  38. NS_ASSUME_NONNULL_END