IndexGoodBookCell.h 922 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // IndexGoodBookCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/9/18.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubItemModel.h"
  10. #import "BookRecommendModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface IndexGoodBookCell : UITableViewCell
  13. @property (weak, nonatomic) IBOutlet UIImageView *imgV;
  14. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  15. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  16. @property (weak, nonatomic) IBOutlet UILabel *subtitleL;
  17. @property (weak, nonatomic) IBOutlet UIView *lineV;
  18. + (IndexGoodBookCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  19. + (IndexGoodBookCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  20. - (void)setDataWithModel:(HomeSubItemModel *)model searchText:(NSString *)text;
  21. - (void)setDataWithModel:(BookRecommendModel *)model;
  22. @end
  23. NS_ASSUME_NONNULL_END