// // CommonListCell.h // smartRhino // // Created by niuzhen on 2020/4/28. // Copyright © 2020 tederen. All rights reserved. // #import #import "MyFavoriteSubModel.h" NS_ASSUME_NONNULL_BEGIN @interface CommonListCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *titleL; @property (weak, nonatomic) IBOutlet UIImageView *iconV; @property (weak, nonatomic) IBOutlet UILabel *nameL; @property (weak, nonatomic) IBOutlet UILabel *desL; @property (weak, nonatomic) IBOutlet UIImageView *isTopV; + (CGFloat)configCell0Height; + (CommonListCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; + (CommonListCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath; - (void)setCell1Data:(MyFavoriteSubModel *)model; - (void)setCellData:(MyFavoriteSubModel *)model withText:(NSString *)text; @end NS_ASSUME_NONNULL_END