iOS开发-性能篇(持续更新中...)
2017-12-04 本文已影响3人
link_hui
高效圆角
注意避免使用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;