1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // 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;
- + (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 *)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
|