123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // GroupSynopsisCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/6/15.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PNCircleChart.h"
- #import "CollectionViewSpaceLayout.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface GroupSynopsisCell : UITableViewCell<UICollectionViewDelegate,UICollectionViewDataSource,SpaceLayoutDelegate>
- @property (weak, nonatomic) IBOutlet UILabel *countL;
- @property (weak, nonatomic) IBOutlet UIView *BezierOneV;
- @property (weak, nonatomic) IBOutlet UILabel *BezierOneL;
- @property (weak, nonatomic) IBOutlet UIView *BezierTwoV;
- @property (weak, nonatomic) IBOutlet UILabel *BezierTwoL;
- @property (weak, nonatomic) IBOutlet UIView *BezierThreeV;
- @property (weak, nonatomic) IBOutlet UILabel *BezierThreeL;
- @property (weak, nonatomic) IBOutlet UIView *BezierFourV;
- @property (weak, nonatomic) IBOutlet UILabel *BezierFourL;
- @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
- @property (weak, nonatomic) IBOutlet UIImageView *iconV;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *contentL;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH;
- @property (weak, nonatomic) IBOutlet UIButton *moreBtn;
- @property (strong, nonatomic)CollectionViewSpaceLayout * layout;
- + (GroupSynopsisCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (GroupSynopsisCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (GroupSynopsisCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (GroupSynopsisCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setData;
- - (void)setContentText:(NSString *)text;
- - (void)setCollData;
- @end
- NS_ASSUME_NONNULL_END
|