[一句秒懂]基本控件圆角问题

1:label

除了基本创建以外:需要设置两个条件:

a:self.saleOutLabel.clipsToBounds = YES;

b:self.saleOutLabel.layer.cornerRadius = height/2;

 

2.button

a:self.UIButton.layer.corerRadius = height /2;

 

3:UIImageView

a方法一:和上面button差不多

b:通过画CorText上下文描述UIImageView

 

如果发现在在基本控件view上有卡顿的现象,建议使用第二种方式创建,后期贴上代码,

 

你可能感兴趣的:([一句秒懂]基本控件圆角问题)