TopicBookCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // TopicBookCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/7/21.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TopicBookCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imagV;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  13. @property (weak, nonatomic) IBOutlet UILabel *subtitleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *countL;
  15. @property (weak, nonatomic) IBOutlet UIView *lineV;
  16. @property (weak, nonatomic) IBOutlet UIButton *selectBtn;
  17. @property (weak, nonatomic) IBOutlet UIButton *enterBtn;
  18. @property (weak, nonatomic) IBOutlet UIImageView *rightV;
  19. @property (weak, nonatomic) IBOutlet UIImageView *IsTopV;
  20. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *width;
  21. + (TopicBookCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  22. + (TopicBookCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  23. + (TopicBookCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  24. @end
  25. NS_ASSUME_NONNULL_END