// // HomeProblemTopCell.h // smartRhino // // Created by niuzhen on 2020/5/19. // Copyright © 2020 tederen. All rights reserved. // #import #import "BookProblemModel.h" #import "HomeSubItemModel.h" NS_ASSUME_NONNULL_BEGIN @interface HomeProblemTopCell : UITableViewCell @property (weak, nonatomic) IBOutlet UICollectionView *collectionView; @property (weak, nonatomic) IBOutlet UILabel *topTitleL; @property (weak, nonatomic) IBOutlet UILabel *topContentL; @property (weak, nonatomic) IBOutlet UIButton *TopBtn; @property (weak, nonatomic) IBOutlet UIImageView *imagV; @property (weak, nonatomic) IBOutlet UILabel *TitleL; @property (weak, nonatomic) IBOutlet UILabel *subTitleL; @property (weak, nonatomic) IBOutlet UILabel *nameL; @property (weak, nonatomic) IBOutlet UILabel *keL; @property (weak, nonatomic) IBOutlet UILabel *timeL; @property (weak, nonatomic) IBOutlet UIImageView *yanV; @property (weak, nonatomic) IBOutlet UILabel *numL; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *height; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *collectH; + (HomeProblemTopCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (HomeProblemTopCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; - (void)setDataModel:(BookProblemModel *)model; - (void)setDataListModel:(HomeSubItemModel *)model; @end NS_ASSUME_NONNULL_END