Basically I'm using "instanceMethodSignatureForSelector" as part of the construction of an NSTimer. My problem is that the below NSMethodSignature is always set to "Nil".
NSMethodSignature *signature = [[self class] instanceMethodSignatureForSelector:@selector(gravityMeth:sprite:)];
The selector that it's looking at is the below.
-(void) gravityMeth:(CCSprite*)sprite:(b2Body*)body
Does anyone have any help because I honestly can't see the problem at all!
Thanks in advance!