vote up 0 vote down star
3

Does anyone know how to animate a radar animation like the image below? alt text

With it growing outwards? I have to draw the circle using Quartz or some other way?

flag

38% accept rate

1 Answer

vote up 1 vote down

To draw a static circle in a UIView subclass:

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

From there you just need to animate it with a timer, vary the size of the rect, and add more circles.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.