Try the search, it's linked to some great forums

Monday, July 11, 2011

Private methods

Use this coding in the top of your .m file to prevent compiler warnings - "undeclared selector" @interface HelloWorld (PrivateMethods)
-(void) initSprites;
-(void) performActionSequenceOnNode:(CCNode*)node;
@end

This tells the compiler that there are methods out there that will be defined