I created a category class which standardize the feel and look of UITextView. I manage to add border with the code below but not sure how to set font name, font color.
#import "UITextView+Form.h"
#import <QuartzCore/QuartzCore.h>
@implementation UITextView (Form)
-(void)standardize{
CALayer *thisLayer = self.layer;
thisLayer.borderWidth=3.0;
thisLayer.borderColor=[UIColor blackColor].CGColor;
}
@end