12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- //
- // ChatMsgListCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/2.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ChatMsgListImModel.h"
- #import "NoticeModel.h"
- #import "ChatMsgWorkModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatMsgListCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet UIView *cell0SearchBgView;
- @property (strong,nonatomic) IBOutlet UIButton *cell0SearchBtn;
- @property (strong,nonatomic) IBOutlet UIView *cell0MengCengView;
- @property (strong,nonatomic) IBOutlet UIView *cell1ContentBgView;
- @property (strong,nonatomic) IBOutlet UIButton *cell1RightIntoBtn;
- @property (strong,nonatomic) IBOutlet UIImageView *cell2IconImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell2TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell2TimeLabel;
- @property (strong,nonatomic) IBOutlet UIImageView *cell2RightArrowImgView;
- @property (weak, nonatomic) IBOutlet UIImageView *cell2isTop;
- @property (weak, nonatomic) IBOutlet UIButton *enterBtn;
- @property (strong,nonatomic) IBOutlet UIImageView *cell3UserImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell3TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell3IntroLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell3TimeLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell3RedBgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell3RedNumLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell3MengCengView;
- @property (weak, nonatomic) IBOutlet UIButton *cell5SelectBtn;
- @property (strong,nonatomic) IBOutlet UIImageView *cell5UserImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell5TitleLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell5IntroLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell5TimeLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell5RedBgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell5RedNumLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *rightImg;
- @property (weak, nonatomic) IBOutlet UIButton *cell6SelectBtn;
- @property (weak, nonatomic) IBOutlet UIImageView *IsTopView;
- + (CGFloat)configCell0Height;
- + (CGFloat)configCell1Height;
- + (CGFloat)configCell2Height;
- + (CGFloat)configCell3Height;
- + (CGFloat)configCell4Height;
- + (CGFloat)configCell5Height;
- - (void)setCell2MsgWithModel:(ChatMsgWorkModel *)model;
- - (void)setCell3DataWithModel:(ChatMsgListImModel *)model;
- - (void)setCell5DataWithModel:(ChatMsgListImModel *)model;
- - (void)setCell2DataWithModel:(NoticeModel *)model;
- + (ChatMsgListCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgListCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgListCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgListCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgListCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgListCell *)configCell5:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgListCell *)configCell6:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|