ChatNewRowCell.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. + (CGFloat)configCell0Height;
  28. + (CGFloat)configCell1Height;
  29. + (CGFloat)configCell2Height;
  30. + (ChatNewRowCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  31. + (ChatNewRowCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  32. + (ChatNewRowCell *)configCell2:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  33. + (ChatNewRowCell *)configCell10:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  34. + (ChatNewRowCell *)configCell20:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  35. + (ChatNewRowCell *)configCell30:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  36. + (ChatNewRowCell *)configCell40:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  37. @end
  38. NS_ASSUME_NONNULL_END