iOS_给uiview等设置圆角

//设置圆角 
zheZhaoView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 120, 120)];
 [zheZhaoView setBackgroundColor:[UIColor colorWithWhite:0.3f alpha:0.8f]];
 zheZhaoView.layer.cornerRadius = 10;//设置那个圆角的有多圆
 zheZhaoView.layer.borderWidth = 0;//设置边框的宽度,当然可以不要
 zheZhaoView.layer.borderColor = [[UIColor grayColor] CGColor];//设置边框的颜色
 zheZhaoView.layer.masksToBounds = YES;
 [self addSubview:zheZhaoView];


请记得包含#import <QuartzCore/QuartzCore.h>
和该framework文件

你可能感兴趣的:(ios,圆角)