ReplayMeCell.h 846 B

12345678910111213141516171819202122232425262728
  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. NS_ASSUME_NONNULL_BEGIN
  10. @interface ReplayMeCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *iconV;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  13. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  14. @property (weak, nonatomic) IBOutlet UILabel *contentL;
  15. @property (weak, nonatomic) IBOutlet UIView *subView;
  16. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  17. @property (weak, nonatomic) IBOutlet UILabel *subComeL;
  18. @property (weak, nonatomic) IBOutlet UIView *redV;
  19. + (ReplayMeCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  20. - (void)setDataWithText:(NSString *)text;
  21. - (void)setDatasubText;
  22. @end
  23. NS_ASSUME_NONNULL_END