ChatMsgDetailChatInfoCell.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // ChatMsgDetailChatInfoCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/7.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatMsgDetailChatInfoCell : UITableViewCell
  11. @property (strong,nonatomic) IBOutlet UIView *cell0BgView;
  12. @property (strong,nonatomic) IBOutlet UILabel *cell2TitleLabel;
  13. @property (strong,nonatomic) IBOutlet UILabel *cell2ValueLabel;
  14. @property (strong,nonatomic) IBOutlet UIImageView *cell2RightArrowImg;
  15. @property (strong,nonatomic) IBOutlet UISwitch *cell2Switch;
  16. @property (strong,nonatomic) IBOutlet UIView *cell2LineView;
  17. @property (strong,nonatomic) IBOutlet UILabel *cell3TitleLabel;
  18. @property (strong,nonatomic) IBOutlet UIButton *cell3ShareBtn;
  19. @property (strong,nonatomic) IBOutlet UIImageView *cell3ErWeiMaImg;
  20. @property (strong,nonatomic) IBOutlet UIView *cell3LineView;
  21. @property (strong,nonatomic) IBOutlet UILabel *cell4TitleLabel;
  22. @property (strong,nonatomic) IBOutlet UIView *cell4LineView;
  23. @property (weak, nonatomic) IBOutlet UIImageView *ChatImgV;
  24. + (CGFloat)configCell0Height;
  25. + (CGFloat)configCell1Height;
  26. + (CGFloat)configCell2Height;
  27. + (CGFloat)configCell3Height;
  28. + (CGFloat)configCell4Height;
  29. + (ChatMsgDetailChatInfoCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  30. + (ChatMsgDetailChatInfoCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  31. + (ChatMsgDetailChatInfoCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  32. + (ChatMsgDetailChatInfoCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  33. + (ChatMsgDetailChatInfoCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  34. + (ChatMsgDetailChatInfoCell *)configCell5:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  35. @end
  36. NS_ASSUME_NONNULL_END