2012-10-22 79 views
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); 然後寬度也不會重新使用。爲什麼?

+2

你明白的'0.25'線寬是屏幕點的四分之一,因此無法準確呈現,對不對? –

回答

0

嘗試通過現有的任何屏幕設置contentScaleFactor視圖4