CommonEditorCellTextView.m 816 B

1234567891011121314151617181920212223242526272829303132333435
  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. [super awakeFromNib];
  12. self.textview.layer.backgroundColor = [[UIColor clearColor] CGColor];
  13. self.textview.layer.borderColor = [[UIColor lightGrayColor] CGColor];
  14. self.textview.layer.borderWidth = 0.5;
  15. self.textview.layer.cornerRadius = 8.0f;
  16. [self.textview.layer setMasksToBounds:YES];
  17. // Initialization code
  18. }
  19. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  20. [super setSelected:selected animated:animated];
  21. // Configure the view for the selected state
  22. }
  23. @end