vote up 1 vote down star

In an iPhone application I'm developing I have a Image View that displays eyes and I want to make them blink, an obviously blinking is a random thing, it can't be routine and keep repeating like a UIImageView Animation would do on repeat.

How would I set up an animation that displays one frame (blinked eyes) then sets back to the original image and does this in random intervals?

Remember when answering I'm a newbie.

flag

2 Answers

vote up 0 vote down check

You could use a NSTimer. Have the timer's delegate method change the eye image to the blink image, and then set the timer's fire date to a random time.
Once the NSTimer is fired, use this code to set it to a random time:
[yourTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:rand()%maxTimeBetweenBlinks]];
replace yourTimer and maxTimeBetweenBlinks with the right values, of course
You would probably want to use srand(time(NULL)) to seed the random number generator

link|flag
I see, do you know what specifically you would type to set the timers fire date to a random time? – Samantha Jun 25 at 23:00
Thanks, you have really helped me. – Samantha Jun 27 at 16:57
vote up 1 vote down

cocos2d has blink action you can "schedule" the action on image sprite at random time rnd()%10 .

link|flag

Your Answer

Get an OpenID
or

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