| 123456789101112131415161718192021222324252627282930313233 |
- //
- // MsgAudioCellLeft.m
- // BuguLive
- //
- // Created by Kylin on 2025/3/27.
- // Copyright © 2025 xfg. All rights reserved.
- //
- #import "MsgAudioCellLeft.h"
- #import "M80AttributedLabel.h"
- @implementation MsgAudioCellLeft
- - (void)awakeFromNib {
- [super awakeFromNib];
-
- self.mmsglabel.font = [UIFont systemFontOfSize:15];
- self.mmsglabel.textColor = [BGUtils colorWithHexString:@"333333"];
- self.mmsglabel.backgroundColor = [UIColor clearColor];
- self.mmsglabel.textAlignment = kCTTextAlignmentLeft;
- self.mheadimg.layer.borderColor = [UIColor clearColor].CGColor;
- self.mheadimg.layer.borderWidth = 1.0f;
- self.mheadimg.layer.cornerRadius = 20.0f;
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|