In Javascript, for example, you can get the arity (the number of arguments a function is supposed to take) by simply func.length. How can I get this information for a method in Objective-C?
In Javascript, for example, you can get the arity (the number of arguments a
Share
NSMethodSignatureis awesome for all kind of reflection information.