I would like to call a method every 10 seconds, but I want to use something other than NSTimer. What could I use to do this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
If you are not using Cocos2D, you have to use a NSTimer to do this.... If you are using Cocos2D, use the schedule method here's a link below that shows both : |
|||
|
|
I know you said you didn't want to use timers, but just to make sure you know how simple it would be with a timer...
|
|||||||
|
|
You can create a loop with I don't recommend this though, use an NSTimer.
|
||||
|
|
|
If you dont want to use the timer, you can use GCD which internally will make use of NSOperationQueue, nevertheless will work in all cases. For eg: i had a class which was inherited from NSOperation so the above methods didn't work so i had go go with GCD:
The above code calls the method methodYouWantToCall after every three seconds. |
||||
|
|
