我有下面的代碼應該畫一個撫摸和填充的矩形,但填充不會顯示出來。ObjectiveC中的CGContextFillPath如何工作?
[[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。看起來很簡單,這讓我瘋狂!
不,CGContextFillPath自動執行此操作。 – Eli