Is there a way to call [anObject performSelector]; with more than 2 objects? I know you can use an array to pass multiple arguments, but I was wondering if there was a lower level way to call a function I already have defined with more that 2 arguments without using a helper function with an nsarray of arguments.
Share
Either (1) Use an NSInvocation or (2) directly use
objc_msgSend.(Note: make sure all arguments are
id‘s, otherwise the arguments might not be sent correctly.)