Possible Duplicate:
Arguments in @selector
How to call parameterized method with more than 2 parameters to the selector, say for EX i have a method like this
-(void)GetTheData:(NSString *)str1 :(NSString *)str2
Now i need to call this method in the following timer inside the @selector.How can i call??
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:0.0 target:self selector:@selector(**HowCanICallHere**) userInfo:nil repeats:YES];