Is there any significant difference in performance when you call
[someObject performSelector:@selector(testMethod:) withObject:anotherObject];
vs
[someObject testMethod:anotherObject];
?
Is there any significant difference in performance when you call
[someObject performSelector:@selector(testMethod:) withObject:anotherObject];
vs
[someObject testMethod:anotherObject];
?