0

如何在ios中连接点并制作一条线并删除线?

iOS如何制作流线型游戏?

这是链接 http://www.flowanswers.com/

这种类型的项目已经分配给我。

这对我不起作用

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
CGContextSetStrokeColorWithColor(context, [[UIColor blackColor]CGColor]);
CGContextSetLineWidth(context, 1.0);
CGContextMoveToPoint(context, startPoint.x, startPoint.y);
CGContextAddLineToPoint(context, endPoint.x, endPoint.y);
CGContextStrokePath(context);
CGContextRestoreGState(context); 

我将不得不做其他事情。这不是我的解决方案。我正在寻找起点。我做什么来启动这个项目?

我不知道从哪里开始。要搜索什么?

任何想法或建议都将受到高度欢迎。

4

1 回答 1

1

如果您通过子类化视图的 drawRect 方法编写此代码,您的代码将起作用。像这样

- (void)drawRect:(CGRect)rect
    { 
        [[UIColor redColor]set];
        CGContextRef current=UIGraphicsGetCurrentContext();
        CGContextSetLineWidth(current, 0.5);
        CGContextMoveToPoint(current, 50, 50);
        CGContextAddLineToPoint(current, 100, 200);
        CGContextAddLineToPoint(current, 300, 300);
        CGContextStrokePath(current);
         }
于 2013-05-16T08:36:23.500 回答