MsgAudioCellLeft.m 880 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MsgAudioCellLeft.m
  3. // BuguLive
  4. //
  5. // Created by Kylin on 2025/3/27.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import "MsgAudioCellLeft.h"
  9. #import "M80AttributedLabel.h"
  10. @implementation MsgAudioCellLeft
  11. - (void)awakeFromNib {
  12. [super awakeFromNib];
  13. self.mmsglabel.font = [UIFont systemFontOfSize:15];
  14. self.mmsglabel.textColor = [BGUtils colorWithHexString:@"333333"];
  15. self.mmsglabel.backgroundColor = [UIColor clearColor];
  16. self.mmsglabel.textAlignment = kCTTextAlignmentLeft;
  17. self.mheadimg.layer.borderColor = [UIColor clearColor].CGColor;
  18. self.mheadimg.layer.borderWidth = 1.0f;
  19. self.mheadimg.layer.cornerRadius = 20.0f;
  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