0

在此之前我有触发此事件的 touchesBegan void,但我需要显示此行,等待这么多秒,然后消失:

    - (void)drawRect:(CGRect)rect {
      // Drawing code

//Make a simple rectangle and fill background BLUE with half Opeque
CGContextRef context = UIGraphicsGetCurrentContext();
//[[UIColor blueColor] set];
//CGContextSetRGBFillColor(context, 0.0, 0.0, 1.0, 1.0);
//rect = CGRectMake(20, 20, 40, 40);
//CGContextFillRect(context, rect);

//Make a simple RED line from 0,0 to 100, 100 in a FRAME
//CGContextSetRGBFillColor(context, 100.0, 0.0, 0.0, 1.0);
[[UIColor redColor] set];
CGContextMoveToPoint(context, _spaceShip.center.x, _spaceShip.center.y);
CGContextAddLineToPoint( context, nextLocX, nextLocY);

使线路消失的代码

    }
4

1 回答 1

0

重绘没有那条线的框架将是明显的解决方案。

以背景颜色对其进行绘制将是一个不太漂亮的解决方案,在某些情况下可能会运行得更快。

于 2012-12-07T02:31:48.183 回答