如图所示
原因:frame的宽高没有取整
解决方法:在取frame得时候,加上CGRectIntegral,使得宽、高得到一个整数
原始给坐标: CGRectMake(Width - 10 * ScaleWidth - width, _timeLable.y, width, 16 * ScaleHeight)
修改后坐标: CGRectIntegral(CGRectMake(Width - 10 * ScaleWidth - width, _timeLable.y, width, 16 * ScaleHeight))