iOS8.0 UILabel切圆角之后有时边缘会有一条黑线
2018-03-01 本文已影响10人
Luyc_Han
原因:frame的宽高没有取整
解决方法:在取frame得时候,加上CGRectIntegral,使得宽、高得到一个整数
原始给坐标: CGRectMake(Width - 10 * ScaleWidth - width, _timeLable.y, width, 16 * ScaleHeight)
修改后坐标: CGRectIntegral(CGRectMake(Width - 10 * ScaleWidth - width, _timeLable.y, width, 16 * ScaleHeight))