ストロークで塗りつぶされた長方形を描画することになっている次のコードがありますが、塗りつぶしが表示されません。
[[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内にあります。非常に単純なようで、それは私を狂わせています!