12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // ChatNewRowCell.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/10.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatNewRowCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet UIView *cell0SearchBgView;
- @property (strong,nonatomic) IBOutlet UIButton *cell0SearchBtn;
-
- @property (strong,nonatomic) IBOutlet UIImageView *cell1IconImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell1TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell1TimeLabel;
- @property (weak, nonatomic) IBOutlet UIButton *cell1SelectButton;
- @property (weak, nonatomic) IBOutlet UIImageView *rightImageView;
- @property (strong, nonatomic) IBOutlet UIButton *rightButton;
- @property (weak, nonatomic) IBOutlet UIView *cellBlackVIew;
- @property (weak, nonatomic) IBOutlet UIImageView *IsTopImgV;
- @property (strong,nonatomic) IBOutlet UIImageView *cell2UserImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell2TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell2IntroLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell2TimeLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell2RedNumLabel;
- @property (weak, nonatomic) IBOutlet UIButton *cell2SelectButton;
- @property (nonatomic, assign) BOOL isSort;
- + (CGFloat)configCell0Height;
- + (CGFloat)configCell1Height;
- + (CGFloat)configCell2Height;
- + (ChatNewRowCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell5:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell50:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell10:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell20:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell30:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatNewRowCell *)configCell40:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|