//
//  ChatMsgDetailChatInfoCell.h
//  smartRhino
//
//  Created by armin on 2019/11/7.
//  Copyright © 2019 tederen. All rights reserved.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface ChatMsgDetailChatInfoCell : UITableViewCell

@property (strong,nonatomic) IBOutlet UIView *cell0BgView;

@property (strong,nonatomic) IBOutlet UILabel *cell2TitleLabel;
@property (strong,nonatomic) IBOutlet UILabel *cell2ValueLabel;
@property (strong,nonatomic) IBOutlet UIImageView *cell2RightArrowImg;
@property (strong,nonatomic) IBOutlet UISwitch *cell2Switch;
@property (strong,nonatomic) IBOutlet UIView *cell2LineView;

@property (strong,nonatomic) IBOutlet UILabel *cell3TitleLabel;
@property (strong,nonatomic) IBOutlet UIButton *cell3ShareBtn;
@property (strong,nonatomic) IBOutlet UIImageView *cell3ErWeiMaImg;
@property (strong,nonatomic) IBOutlet UIView *cell3LineView;

@property (strong,nonatomic) IBOutlet UILabel *cell4TitleLabel;
@property (strong,nonatomic) IBOutlet UIView *cell4LineView;
@property (weak, nonatomic) IBOutlet UIImageView *ChatImgV;


+ (CGFloat)configCell0Height;
+ (CGFloat)configCell1Height;
+ (CGFloat)configCell2Height;
+ (CGFloat)configCell3Height;
+ (CGFloat)configCell4Height;

+ (ChatMsgDetailChatInfoCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgDetailChatInfoCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgDetailChatInfoCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgDetailChatInfoCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgDetailChatInfoCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgDetailChatInfoCell *)configCell5:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
@end

NS_ASSUME_NONNULL_END