1

我正在画一条线

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); 那么宽度也没有重新使用。为什么?

4

1 回答 1

0

尝试将视图的 contentScaleFactor 设置为 4

于 2012-10-22T17:07:22.883 回答