MOConversationEmptyCell.m 824 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MOConversationEmptyCell.m
  3. // TUIConversation
  4. //
  5. // Created by SuperC on 2025/5/16.
  6. //
  7. #import "MOConversationEmptyCell.h"
  8. @implementation MOConversationEmptyCell
  9. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
  10. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  11. if (self) {
  12. self.backgroundColor = [UIColor clearColor];
  13. self.contentView.backgroundColor = [UIColor clearColor];
  14. self.selectionStyle = UITableViewCellSelectionStyleNone;
  15. }
  16. return self;
  17. }
  18. - (void)awakeFromNib {
  19. [super awakeFromNib];
  20. // Initialization code
  21. }
  22. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  23. [super setSelected:selected animated:animated];
  24. // Configure the view for the selected state
  25. }
  26. @end