MsgGiftCellRight.m 590 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ZWMsgGiftCellRight.m
  3. // testChatVC
  4. //
  5. // Created by zzl on 16/7/26.
  6. // Copyright © 2016年 zzl. All rights reserved.
  7. //
  8. #import "MsgGiftCellRight.h"
  9. @implementation MsgGiftCellRight
  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. [self.mtitle setLocalizedString];
  16. }
  17. - (void)setSelected:(BOOL)selected animated:(BOOL)animated
  18. {
  19. [super setSelected:selected animated:animated];
  20. // Configure the view for the selected state
  21. }
  22. @end