-3

如何在 iOS 应用中绘制十字准线?

- (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); 
}

请参见下面的示例图像。

在此处输入图像描述

4

1 回答 1

3

这应该可以帮助您开始了解您所缺少的内容。你很亲密。添加一个椭圆,你就完成了,但正如其他人所建议的那样,简单快速查看Quart2d编程指南或任何Quart2dtuts 将显示所有这些以及更多内容。

画一个圆

- (void)drawRect:(CGRect)rect
{
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetStrokeColorWithColor(context, [UIColor yellowColor].CGColor);
    CGContextSetLineWidth(context, 2.0);
    CGContextBeginPath(context);
    CGContextMoveToPoint(context, 20, 20);
    CGContextAddLineToPoint(context, 40, 20);
    CGContextStrokePath(context);

    CGContextSetStrokeColorWithColor(context, [UIColor yellowColor].CGColor);
    CGContextSetLineWidth(context, 2.0);
    CGContextBeginPath(context);
    CGContextMoveToPoint(context, 30, 10);
    CGContextAddLineToPoint(context, 30, 30);
    CGContextStrokePath(context);

}
于 2013-06-03T17:13:52.893 回答