czinputCell.m 584 B

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