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

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface ChatMsgNoticeCell : UITableViewCell

@property (weak,nonatomic) IBOutlet UIView *cell0SearchBgView;
@property (weak,nonatomic) IBOutlet UIButton *cell0SearchBtn;
 
@property (weak,nonatomic) IBOutlet UIImageView *cell1IconImgView;
@property (weak,nonatomic) IBOutlet UILabel *cell1TitleLabel;
@property (weak,nonatomic) IBOutlet UILabel *cell1TimeLabel;
@property (weak, nonatomic) IBOutlet UIButton *cell1SelectButton;
@property (weak, nonatomic) IBOutlet UIImageView *rightImageView;
@property (weak, nonatomic) IBOutlet UIView *cellBlackVIew;
@property (weak, nonatomic) IBOutlet UIImageView *IsTopImgV;

@property (weak, nonatomic) IBOutlet UIButton *enterBtn;
@property (weak, nonatomic) IBOutlet UILabel *powerLbl;
@property (weak,nonatomic) IBOutlet UIImageView *cell2UserImgView;
@property (weak,nonatomic) IBOutlet UILabel *cell2TitleLabel;
@property (weak,nonatomic) IBOutlet UILabel *cell2IntroLabel;
@property (weak,nonatomic) IBOutlet UILabel *cell2TimeLabel;
@property (weak,nonatomic) IBOutlet UIView *cell2RedBgView;
@property (weak,nonatomic) IBOutlet UIButton *cell2EditBtn;
@property (weak, nonatomic) IBOutlet UILabel *cell2UnReadNumberLbl;
@property (weak, nonatomic) IBOutlet UILabel *yanRedNumL;

@property (assign,nonatomic) BOOL             isShow;
+ (CGFloat)configCell0Height;
+ (CGFloat)configCell1Height;
+ (CGFloat)configCell2Height;

+ (ChatMsgNoticeCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgNoticeCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgNoticeCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;

+ (ChatMsgNoticeCell *)configCell10:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgNoticeCell *)configCell20:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgNoticeCell *)configCell30:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgNoticeCell *)configCell40:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
+ (ChatMsgNoticeCell *)configCell50:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
@end

NS_ASSUME_NONNULL_END