1
vote
Timer and animation events trumping TouchesEnded events
Try writing your own Timer-type class by spawning off onto a thread. Example:
BOOL continue = YES; //outside of your @implementation
-(void)doLoop
{
while(continue){
[NSTh …
