Tuesday, July 27, 2010

UIView With Rounded corners

For Rounded Corners of UIView You Can use the following Code..
But you have to import first....
#import <QuartzCore/QuartzCore.h>

aView.layer.cornerRadius=8.0;
aView.layer.masksToBounds=YES;


cheers
Mandeep