I know it's possible to call a method by its name like this:
NSString *string =@"methodName";
[self performSelector:NSSelectorFromString(string)];
And that it will execute the method below:
-(void)methodName
{
// todo:.....
}
I'm wondering how to call a method which has parameters like this:
-(void)methodName:(NSString *)_name :withValue (NSString *) value
{
// todo:.....
}