I have a method that varies by a single method call inside, and I\'d like to pass the method/signature of the method that it varies by as an argument... is this possible in
Or if you're using the fooWithMethod:(SEL)selector approach, just do [myObject performSelector:selector] on it, if it has no other arguments.
fooWithMethod:(SEL)selector
[myObject performSelector:selector]
See NSObject for details.