我有以下代码应该绘制一个描边和填充的矩形,但填充不会显示。
[[UIColor greenColor] setStroke];
[[UIColor brownColor] setFill];
CGContextBeginPath(context);
CGContextMoveToPoint(context, right, bottom);
CGContextAddLineToPoint(context, right,top);
CGContextAddLineToPoint(context,left, top);
CGContextAddLineToPoint(context, left, bottom);
CGContextAddLineToPoint(context, right, bottom);
CGContextStrokePath(context);
CGContextFillPath(context);
中风有效,我得到一个漂亮的绿色矩形,没有填充(或白色填充)。这是在 iOS 的 UIView 中。看起来很简单,它让我发疯!