I recently managed to enable ARC on my project, by following this tutorial
http://www.learn-cocos2d.com/2012/04/enabling-arc-cocos2d-project-howto-stepbystep-tutorialguide/
Everything worked until i added a schedule method like:
[self schedule:@selector(test:) interval:0.1];
Method:
-(void)test:(id)timer{
NSLog(@"yes!");
}
Unfortunately, it doesnt say ‘yes!’, instead it crashes with:
0x1de8d83: movl (%eax), %edx
And shows:

I thought it would be ok to just use:
Instead use:
Didn’t have this problem when ARC wasn’t enabled yet.