ChatMsgListCell.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. //
  2. // ChatMsgListCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ChatMsgListImModel.h"
  10. #import "NoticeModel.h"
  11. #import "ChatMsgWorkModel.h"
  12. #import "ChatSearchModel.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface ChatMsgListCell : UITableViewCell
  15. @property (strong,nonatomic) IBOutlet UIView *cell0SearchBgView;
  16. @property (strong,nonatomic) IBOutlet UIButton *cell0SearchBtn;
  17. @property (strong,nonatomic) IBOutlet UIView *cell0MengCengView;
  18. @property (strong,nonatomic) IBOutlet UIView *cell1ContentBgView;
  19. @property (strong,nonatomic) IBOutlet UIButton *cell1RightIntoBtn;
  20. @property (strong,nonatomic) IBOutlet UIImageView *cell2IconImgView;
  21. @property (strong,nonatomic) IBOutlet UILabel *cell2TitleLabel;
  22. @property (strong,nonatomic) IBOutlet UILabel *cell2TimeLabel;
  23. @property (strong,nonatomic) IBOutlet UIImageView *cell2RightArrowImgView;
  24. @property (weak, nonatomic) IBOutlet UIImageView *cell2isTop;
  25. @property (weak, nonatomic) IBOutlet UIButton *enterBtn;
  26. @property (strong,nonatomic) IBOutlet UIImageView *cell3UserImgView;
  27. @property (strong,nonatomic) IBOutlet UILabel *cell3TitleLabel;
  28. @property (strong,nonatomic) IBOutlet UILabel *cell3IntroLabel;
  29. @property (strong,nonatomic) IBOutlet UILabel *cell3TimeLabel;
  30. @property (strong,nonatomic) IBOutlet UIView *cell3RedBgView;
  31. @property (strong,nonatomic) IBOutlet UILabel *cell3RedNumLabel;
  32. @property (strong,nonatomic) IBOutlet UIView *cell3MengCengView;
  33. @property (weak, nonatomic) IBOutlet UIButton *cell5SelectBtn;
  34. @property (strong,nonatomic) IBOutlet UIImageView *cell5UserImgView;
  35. @property (strong,nonatomic) IBOutlet UILabel *cell5TitleLabel;
  36. @property (strong,nonatomic) IBOutlet UILabel *cell5IntroLabel;
  37. @property (strong,nonatomic) IBOutlet UILabel *cell5TimeLabel;
  38. @property (strong,nonatomic) IBOutlet UIView *cell5RedBgView;
  39. @property (strong,nonatomic) IBOutlet UILabel *cell5RedNumLabel;
  40. @property (weak, nonatomic) IBOutlet UIImageView *rightImg;
  41. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *leftW;
  42. @property (weak, nonatomic) IBOutlet UIButton *cell6SelectBtn;
  43. @property (weak, nonatomic) IBOutlet UIImageView *IsTopView;
  44. @property (weak, nonatomic) IBOutlet UILabel *bottomL;
  45. + (CGFloat)configCell0Height;
  46. + (CGFloat)configCell1Height;
  47. + (CGFloat)configCell2Height;
  48. + (CGFloat)configCell3Height;
  49. + (CGFloat)configCell4Height;
  50. + (CGFloat)configCell5Height;
  51. - (void)setCell2MsgWithModel:(ChatMsgWorkModel *)model;
  52. - (void)setCell3DataWithModel:(ChatMsgListImModel *)model;
  53. - (void)setCell5DataWithModel:(ChatMsgListImModel *)model;
  54. - (void)setCell2DataWithModel:(NoticeModel *)model;
  55. - (void)setCellSearchModel:(ChatSearchModel *)model;
  56. + (ChatMsgListCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  57. + (ChatMsgListCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  58. + (ChatMsgListCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  59. + (ChatMsgListCell *)configCell3:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  60. + (ChatMsgListCell *)configCell4:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  61. + (ChatMsgListCell *)configCell5:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  62. + (ChatMsgListCell *)configCell6:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  63. @end
  64. NS_ASSUME_NONNULL_END