如何在iOS應用程序中繪製十字線?繪製十字線與iOS CoreGraphics
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(context, 1.0, 1.0, 0.0, 0.5); // yellow line
CGContextBeginPath(context);
CGContextMoveToPoint(context, 40.0, 40.0); //start point
// Crosshairs go here?!?!?!?
// What do I fill in?
CGContextClosePath(context);
CGContextSetLineWidth(context, 2.0);
CGContextStrokePath(context);
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 0.0);
CGContextFillRect(context, rect);
}
查看下圖示例圖片。
有你看看石英2D編程指南?所有你需要的是兩條線和一個圓圈。 – rmaddy
是的,我讀過它,但得到的形狀,而不是線條。我不得不轉向其他東西,並認爲我會問。猜測這是令人沮喪的。 :-( –