| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // ZWMsgCellLeft.m
- // testChatVC
- //
- // Created by zzl on 16/7/25.
- // Copyright © 2016年 zzl. All rights reserved.
- //
- #import "MsgCellLeft.h"
- #import "M80AttributedLabel.h"
- @implementation MsgCellLeft
- - (void)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;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated
- {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|