Should iOS games use a Timer?

Posted by ???? on Game Development See other posts from Game Development or by ????
Published on 2012-04-19T23:32:21Z Indexed on 2012/06/07 16:48 UTC
Read the original article Hit count: 200

Filed under:
|
|

No matter what frameworks we use -- Core Graphics, Cocos2D, OpenGL ES -- to write games, should a timer be used (for games that has animation even when a user doesn't do any input, such as after firing a missile and waiting to see if the UFO is hit)?

I read that NSTimer might not get fired until after scheduled time (interval), and CADisplayLink can delay and get fired at a later time as well, only that it tells you how late it is so you can move the object more, so it can make the object look like it skipped frame. Must we use a Timer? And if so, what is the best one to use?

© Game Development or respective owner

Related posts about opengl-es

Related posts about ios