Why use NSInvocation when you could just call the method? Need to ask this question because I can't understand the need to use this class. What is the advantage of using it over just calling the method like below.
[myArray addObject:myString];
Additional info: What specific challenges does it resolve/address which can't be addressed by the other method calling options.