高效圆角
注意避免使用maskToBounds
- UIView的圆角
view.layer.cornerRadius = 5;
- UILabel的圆角
label.layer.backgroundColor = [UIColor redColor].CGColor; //不需要背景色的时候同UIView
label.layer.cornerRadius = 5;
注意避免使用maskToBounds
view.layer.cornerRadius = 5;
label.layer.backgroundColor = [UIColor redColor].CGColor; //不需要背景色的时候同UIView
label.layer.cornerRadius = 5;
本文标题:iOS开发-性能篇(持续更新中...)
本文链接:https://www.haomeiwen.com/subject/vdtxixtx.html
网友评论