Bordered UITextView
Add the following for rounded corners:
self.yourUITextview.layer.cornerRadius = 8;
#import <QuartzCore/QuartzCore.h>
....
// typically inside of the -(void) viewDidLoad method
self.yourUITextView.layer.borderWidth = 5.0f;
self.yourUITextView.layer.borderColor = [[UIColor grayColor] CGColor];