ReplayMeCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ReplayMeCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/11.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ReplyModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ReplayMeCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *iconV;
  13. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  14. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  15. @property (weak, nonatomic) IBOutlet UILabel *contentL;
  16. @property (weak, nonatomic) IBOutlet UIView *subView;
  17. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  18. @property (weak, nonatomic) IBOutlet UILabel *subComeL;
  19. @property (weak, nonatomic) IBOutlet UIView *redV;
  20. @property (weak, nonatomic) IBOutlet UIImageView *FileImgV;
  21. + (ReplayMeCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  22. + (ReplayMeCell *)configCell1:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  23. - (void)setDataModel:(ReplyModel *)model;
  24. - (void)setDataCommentModel:(ReplyModel *)model;
  25. - (void)setDataModel:(ReplyModel *)model searchText:(NSString *)searchText;
  26. - (void)setDataCommentModel:(ReplyModel *)model searchText:(NSString *)searchText;
  27. @end
  28. NS_ASSUME_NONNULL_END