I'm fairly new to Objective-C, so forgive me if I'm missing something common. I have a method with several (four) required parameters that needs to run over and over with a delay between runs. Normally, I'd use:
[self performSelector:@selector(methodName:) withObject:nil afterDelay:1.0f/10f];
The problem is I need the method to pass parameters (more than one) back into itself after the delay; but this bit of code can only pass one over. Is there something I'm missing here?