Basic question alert! I have a 'GameLayer' layer with the method 'startGame'. This layer also contains another layer called 'MenuLayer'. So in order to call the startGame method from within MenuLayer I use:
[parent startGame];
Which gives me: 'warning: Cocosnode may not respond to '-startGame' (Messages without a matching signature will be assumed to return 'id' and accept '...' as arguments.)
I declared the startGame method in GameLayer.h, so why do I get this warning?