Is it possible to use NSInvocation with value type arguments?
Currently we can do this:
[invocation setArgument:¶m1 atIndex:2];
But we'd like that first parameter to be a value type such as int.
When I look at the variable being passed to the target method in the debbugger it's some junk value like 1.367481856920029E+302 - which seems like it's converting an object's address to an int.