如何连接点并在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);
我将不得不做别的事情。这不是我的解决方案。我找到了起点。我该怎么做才能开始这个项目?
我不知道从哪里开始。搜索什么?
非常欢迎任何想法或建议。
答案 0 :(得分: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);
}