ChatNewRowCell.h 2.2 KB

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