// // HomeWeiCousreCell.h // smartRhino // // Created by niuzhen on 2020/5/16. // Copyright © 2020 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface HomeWeiCousreCell : UITableViewCell @property (weak, nonatomic) IBOutlet UICollectionView *collectionView; @property (weak, nonatomic) IBOutlet UIImageView *imgV; @property (weak, nonatomic) IBOutlet UILabel *titleL; @property (weak, nonatomic) IBOutlet UILabel *subTitleL; @property (weak, nonatomic) IBOutlet UILabel *nameL; @property (weak, nonatomic) IBOutlet UILabel *timeL; @property (weak, nonatomic) IBOutlet UIImageView *yunV; @property (weak, nonatomic) IBOutlet UILabel *numL; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *nameContant; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *timeContant; @property (weak, nonatomic) IBOutlet UIView *lineV; @property (weak, nonatomic) IBOutlet UILabel *jianjieL; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lineLeft; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lineRight; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height; @property (strong, nonatomic) NSMutableArray *dataArray; + (HomeWeiCousreCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (HomeWeiCousreCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (HomeWeiCousreCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (HomeWeiCousreCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; - (void)setCollData; @end NS_ASSUME_NONNULL_END