CommonEditorCellTextView.m 800 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // CommonEditorCellTextView.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 9/24/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "CommonEditorCellTextView.h"
  9. @implementation CommonEditorCellTextView
  10. - (void)awakeFromNib {
  11. self.textview.layer.backgroundColor = [[UIColor clearColor] CGColor];
  12. self.textview.layer.borderColor = [[UIColor lightGrayColor] CGColor];
  13. self.textview.layer.borderWidth = 0.5;
  14. self.textview.layer.cornerRadius = 8.0f;
  15. [self.textview.layer setMasksToBounds:YES];
  16. // Initialization code
  17. }
  18. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  19. [super setSelected:selected animated:animated];
  20. // Configure the view for the selected state
  21. }
  22. @end