1
蔭繪圖與減少線寬CGContextSetLineWidth(context,1.0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(context, 1.0, 1.0, 1.0, 1.0);
CGContextSetLineWidth(context, 1.0);
CGContextMoveToPoint(context, 0.0, 100.0);
CGContextAddLineToPoint(context, 310.0, 100.0);
CGContextStrokePath(context);
線如何使線寬0.25? 如果我正在製作 CGContextSetLineWidth(context,0.25); 然後寬度也不會重新使用。爲什麼?
你明白的'0.25'線寬是屏幕點的四分之一,因此無法準確呈現,對不對? –