我正在画一条线
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); 那么宽度也没有重新使用。为什么?