views:

50

answers:

1

how to set rounded corner for a UITextView ?

+1  A: 

fist import the file

#import <QuartzCore/QuartzCore.h>

and the set the property of your text view

yourTextViewName.layer.cornerRadius = kCornerRadius;

where kCornerRadius is a constant you set as a radius for corner

Gyani
thanks buddy,....worked.. :)
Arun Abraham