MsgVoiceCellRight.m 554 B

123456789101112131415161718192021222324252627
  1. //
  2. // ZWMsgVoiceCellRight.m
  3. // testChatVC
  4. //
  5. // Created by zzl on 16/7/26.
  6. // Copyright © 2016年 zzl. All rights reserved.
  7. //
  8. #import "MsgVoiceCellRight.h"
  9. @implementation MsgVoiceCellRight
  10. - (void)awakeFromNib
  11. {
  12. self.mheadimg.layer.borderColor = [UIColor clearColor].CGColor;
  13. self.mheadimg.layer.borderWidth = 1.0f;
  14. self.mheadimg.layer.cornerRadius = 20.0f;
  15. }
  16. - (void)setSelected:(BOOL)selected animated:(BOOL)animated
  17. {
  18. [super setSelected:selected animated:animated];
  19. // Configure the view for the selected state
  20. }
  21. @end