我想畫一個戒指。戒指應填充在一個外圈。我提到了一個文檔http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_paths/dq_paths.html#//apple_ref/doc/uid/TP30001066-CH211-TPXREF101。但仍然有問題得到結果。這是代碼。如何在iphone中繪製同心圓?
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextClearRect(ctx, rect);
CGContextSetRGBFillColor(ctx, 0.0, 255.0, 1.0, 1.0);CGContextFillPath(ctx);
CGContextStrokeEllipseInRect(ctx, CGRectMake(125, 125, 150, 150));
CGContextBeginPath(ctx);
CGContextEOFillPath(ctx);
CGContextFillEllipseInRect(ctx, CGRectMake(100, 100, 200, 200));
...發生了什麼事? – 2011-05-19 15:42:32
它完全填充了圓。 – 2011-05-20 08:47:07
用可幫助您的運行示例檢查此答案:http://stackoverflow.com/a/27796085/1381708 – 2015-01-06 09:54:41