如何在iPhone SDK中进行雷达动画?

时间:2009-06-19 00:33:42

标签: iphone animation core-animation

有谁知道如何为下面的图像设置雷达动画的动画? alt text http://img197.imageshack.us/img197/7124/circle0.png

随着它向外增长?我必须使用Quartz或其他方式绘制圆圈?

1 个答案:

答案 0 :(得分:1)

UIView子类中绘制静态圆:

- (void)drawRect:(CGRect)rect
{
    CGRect rect = { 0.0f, 0.0f, 100.0f, 100.0f };
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
    CGContextSetLineWidth(context, 2.0f);
    CGContextAddEllipseInRect(context, rect);
    CGContextStrokePath(context);
}

从那里你只需要用计时器设置动画,改变矩形的大小,并添加更多的圆圈。