Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How i can do a UIView animation like a radar? I already have a UIView with the circles created with drawrect, but how i can create a line, doing a clock animation?

Like the image below : enter image description here

share|improve this question

2 Answers

up vote 3 down vote accepted

If you are already having all these images then you only require one radar line animation.

You can rotate radar line using this code:

- (void) startAnimation {

CABasicAnimation *radarHand;

radarHand = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];

radarHand.fromValue = [NSNumber numberWithFloat:fromAngle+M_PI];

radarHand.byValue = [NSNumber numberWithFloat:((360*M_PI)/180)];

radarHand.duration = 60.0f;

radarHand.repeatCount = HUGE_VALF;

}

(Guess radar line - semi transparent image is also there with you.)

Hope this will help you.

share|improve this answer

You can create UIView with size of this circle and with center at the center of the circle, draw line (that starts from the center of this view) and than rotate this view.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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