ChatMsgNoticeCell.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // ChatMsgNoticeCell.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/4.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatMsgNoticeCell : UITableViewCell
  11. @property (weak,nonatomic) IBOutlet UIView *cell0SearchBgView;
  12. @property (weak,nonatomic) IBOutlet UIButton *cell0SearchBtn;
  13. @property (weak,nonatomic) IBOutlet UIImageView *cell1IconImgView;
  14. @property (weak,nonatomic) IBOutlet UILabel *cell1TitleLabel;
  15. @property (weak,nonatomic) IBOutlet UILabel *cell1TimeLabel;
  16. @property (weak, nonatomic) IBOutlet UIButton *cell1SelectButton;
  17. @property (weak, nonatomic) IBOutlet UIImageView *rightImageView;
  18. @property (weak, nonatomic) IBOutlet UIView *cellBlackVIew;
  19. @property (weak, nonatomic) IBOutlet UIImageView *IsTopImgV;
  20. @property (weak, nonatomic) IBOutlet UIButton *enterBtn;
  21. @property (weak, nonatomic) IBOutlet UILabel *powerLbl;
  22. @property (weak,nonatomic) IBOutlet UIImageView *cell2UserImgView;
  23. @property (weak,nonatomic) IBOutlet UILabel *cell2TitleLabel;
  24. @property (weak,nonatomic) IBOutlet UILabel *cell2IntroLabel;
  25. @property (weak,nonatomic) IBOutlet UILabel *cell2TimeLabel;
  26. @property (weak,nonatomic) IBOutlet UIView *cell2RedBgView;
  27. @property (weak,nonatomic) IBOutlet UIButton *cell2EditBtn;
  28. @property (weak, nonatomic) IBOutlet UIButton *cell2SelectButton;
  29. @property (weak, nonatomic) IBOutlet UILabel *cell2UnReadNumberLbl;
  30. @property (weak, nonatomic) IBOutlet UILabel *yanRedNumL;
  31. + (CGFloat)configCell0Height;
  32. + (CGFloat)configCell1Height;
  33. + (CGFloat)configCell2Height;
  34. + (ChatMsgNoticeCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  35. + (ChatMsgNoticeCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  36. + (ChatMsgNoticeCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  37. + (ChatMsgNoticeCell *)configCell10:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  38. + (ChatMsgNoticeCell *)configCell20:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  39. + (ChatMsgNoticeCell *)configCell30:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  40. + (ChatMsgNoticeCell *)configCell40:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  41. + (ChatMsgNoticeCell *)configCell50:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  42. @end
  43. NS_ASSUME_NONNULL_END