1234567891011121314151617181920212223242526272829 |
- //
- // IndexGoodBookCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/9/18.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeSubItemModel.h"
- #import "BookRecommendModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface IndexGoodBookCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imgV;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *subtitleL;
- @property (weak, nonatomic) IBOutlet UIView *lineV;
- + (IndexGoodBookCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (IndexGoodBookCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataWithModel:(HomeSubItemModel *)model searchText:(NSString *)text;
- - (void)setDataWithModel:(BookRecommendModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|