设置UIView 成圆边角

实现UIView圆边角代码如下

downView.layer.cornerRadius=4;//设置圆角的半径
downView.layer.masksToBounds=YES;//绘制边角

前提是先要引入QuartzCore/QuartzCore.h文件

#import <QuartzCore/QuartzCore.h>

你可能感兴趣的:(设置UIView 成圆边角)