performSelector vs direct call performance

Viewed 1742

Is there any significant difference in performance when you call

[someObject performSelector:@selector(testMethod:) withObject:anotherObject];

vs

[someObject testMethod:anotherObject];

?

7 Answers
Related