123456789101112131415161718192021222324252627282930 |
- #import <UIKit/UIKit.h>
- #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;
- @end
- NS_ASSUME_NONNULL_END
|