CommonListCell.h 907 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // CommonListCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/28.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MyFavoriteSubModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface CommonListCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  13. @property (weak, nonatomic) IBOutlet UIImageView *iconV;
  14. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  15. @property (weak, nonatomic) IBOutlet UILabel *desL;
  16. @property (weak, nonatomic) IBOutlet UIImageView *isTopV;
  17. + (CGFloat)configCell0Height;
  18. + (CommonListCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  19. + (CommonListCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  20. - (void)setCell1Data:(MyFavoriteSubModel *)model;
  21. - (void)setCellData:(MyFavoriteSubModel *)model withText:(NSString *)text;
  22. @end
  23. NS_ASSUME_NONNULL_END