MsgCellLeft.m 812 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ZWMsgCellLeft.m
  3. // testChatVC
  4. //
  5. // Created by zzl on 16/7/25.
  6. // Copyright © 2016年 zzl. All rights reserved.
  7. //
  8. #import "MsgCellLeft.h"
  9. #import "M80AttributedLabel.h"
  10. @implementation MsgCellLeft
  11. - (void)awakeFromNib
  12. {
  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. }
  21. - (void)setSelected:(BOOL)selected animated:(BOOL)animated
  22. {
  23. [super setSelected:selected animated:animated];
  24. // Configure the view for the selected state
  25. }
  26. @end