1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // ChatMsgDetailChatCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/7.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatMsgDetailChatCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet UILabel *cell0IntroLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell1ContentLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell1ContentBgView;
- @property (strong,nonatomic) IBOutlet UIImageView *cell2LeftUserImg;
- @property (strong,nonatomic) IBOutlet UIButton *cell2LeftUserBtn;
- @property (strong,nonatomic) IBOutlet UIView *cell2LeftContentBgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell2LeftContentLabel;
- @property (strong,nonatomic) IBOutlet NSLayoutConstraint *cell2ContentBgViewRightW;
- @property (strong,nonatomic) IBOutlet UIImageView *cell3RightUserImg;
- @property (strong,nonatomic) IBOutlet UIButton *cell3RightUserBtn;
- @property (strong,nonatomic) IBOutlet UIView *cell3RightContentBgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell3RightContentLabel;
- @property (strong,nonatomic) IBOutlet NSLayoutConstraint *cell3ContentBgViewLeftW;
- + (CGFloat)configCell0Height;
- + (CGFloat)configCell1Height;
- + (CGFloat)configCell2HeightWithContent:(NSString *)content;
- + (CGFloat)configCell3HeightWithContent:(NSString *)content;
- + (ChatMsgDetailChatCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgDetailChatCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgDetailChatCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- + (ChatMsgDetailChatCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|