Is it possible to get the argument from the selector varibale.
For Example
-(void)methodTest:(NSString*)someArg{
SEL selector = @selector(methodTest:);
[self testCall:selector];
}
-(void)testCall:(SEL)selectorArg{
//I would like to get the parameter from the selector (selectorArg)
}
My Questions: 1. Does the selector has the argument, someArg? If not, how to create the selector variable with argument. 2. What is the other way around to do the same?
Just curious to know.