If I have a method like this:
- (void) foo
{
}
Then I can access it through a selector like this:
@selector(foo)
But what if I have a method like this:
- (void) bar:(NSString *)str arg2:(NSString *)str2
{
}
Then how do I access it through a selector?