// // CommonEditorCellTextView.m // RedAnt ERP Mobile // // Created by Ray on 9/24/15. // Copyright © 2015 United Software Applications, Inc. All rights reserved. // #import "CommonEditorCellTextView.h" @implementation CommonEditorCellTextView - (void)awakeFromNib { self.textview.layer.backgroundColor = [[UIColor clearColor] CGColor]; self.textview.layer.borderColor = [[UIColor lightGrayColor] CGColor]; self.textview.layer.borderWidth = 0.5; self.textview.layer.cornerRadius = 8.0f; [self.textview.layer setMasksToBounds:YES]; // Initialization code } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end