12345678910111213141516171819202122232425262728293031 |
- //
- // TopicBookCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/7/21.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TopicBookCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imagV;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *subtitleL;
- @property (weak, nonatomic) IBOutlet UILabel *countL;
- @property (weak, nonatomic) IBOutlet UIView *lineV;
- @property (weak, nonatomic) IBOutlet UIButton *selectBtn;
- @property (weak, nonatomic) IBOutlet UIButton *enterBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *rightV;
- @property (weak, nonatomic) IBOutlet UIImageView *IsTopV;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *width;
- + (TopicBookCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (TopicBookCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (TopicBookCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|