I'm still kind of new to Objective-C and I'm wondering what is the difference between the following two statements?

[object performSelector:@selector(doSomething)]; 

[object doSomething];
link|improve this question

80% accept rate
feedback

5 Answers

up vote 58 down vote accepted

Basically performSelector allows you to dynamically determine which selector to call a selector on the given object. In other words the selector need not be determined before runtime.

Thus even though these are equivalent:

[anObject aMethod]; 
[anObject performSelector:@selector(aMethod)];

The second form allows you to do this:

SEL aSelector = findTheAppropriateSelectorForTheCurrentSituation();
[anObject performSelector: aSelector];

before you send the message.

link|improve this answer
+1 Nice explanation. – Quinn Taylor Sep 29 '09 at 15:53
2  
It's worth pointing out that you would actually assign the result of findTheAppropriateSelectorForTheCurrentSituation() to aSelector, then invoke [anObject performSelector:aSelector]. @selector produces a SEL. – Daniel Yankowsky Sep 29 '09 at 16:59
1  
I edited it to complete the example, renaming the variable for clarity. – bbum Sep 29 '09 at 18:25
2  
Using performSelector: is something you probably only do if you implement target-action in your class. The siblings performSelectorInBackground:withObject: and performSelectorOnMainThread:withObject:waitUntilDone: are often more useful. For spawning a background thread, and for calling back results to the main thread from said background thread. – PeyloW Sep 30 '09 at 8:36
Thanks :) Nice Explanation:) – Vignesh Babu Aug 11 '11 at 5:51
feedback

@ennuikiller is spot on. Basically, dynamically-generated selectors are useful for when you don't (and usually can't possibly) know the name of the method you'll be calling when you compile the code.

One key difference is that -performSelector: and friends (including the multi-threaded and delayed variants) are somewhat limited in that they are designed for use with methods with 0-2 parameters. For example, calling -outlineView:toolTipForCell:rect:tableColumn:item:mouseLocation: with 6 parameters and returning the NSString is pretty unwieldy, and not supported by the provided methods.

link|improve this answer
3  
To do that, you'd need to use an NSInvocation object. – Dave DeLong Sep 29 '09 at 16:02
4  
Another difference: performSelector: and friends all take object arguments, meaning you can't use them to call (for example) setAlphaValue:, because its argument is a float. – Chuck Sep 29 '09 at 17:11
Both are excellent points. – Quinn Taylor Sep 29 '09 at 17:25
feedback

Selectors are a bit like function pointers in other languages. You use them when you don't know at compile time which method you want to call at runtime. Also, like function pointers, they only encapsulate the verb part of invocation. If the method has parameters, you will need to pass them as well.

An NSInvocation serves a similar purpose, except that it binds together more information. Not only does it include the verb part, it also includes the target object and the parameters. This is useful when you want to call a method on a particular object with particular parameters, not now but in the future. You can build an appropriate NSInvocation and fire it later.

link|improve this answer
4  
Selectors really aren't at all like a function pointer in that a function pointer is something you can call with arguments and a selector can be used to call a particular method on any object that implements it; a selector does not have the full context of invocation like a function pointer. – bbum Sep 29 '09 at 18:26
Selectors aren't the same as function pointers, but I still think they are similar. They represent verbs. C function pointers also represent verbs. Neither is useful without additional context. Selectors require an object and parameters; function pointers require parameters (which might include an object upon which to operate). My point was to highlight how they are different from NSInvocation objects, which do contain all the necessary context. Perhaps my comparison was confusing, in which case I apologize. – Daniel Yankowsky Oct 1 '09 at 7:15
feedback
[object doSomething];

Means send the doSomething message to object, whereas:

[object performSelector:@selector(doSomething)]; 

Means send the message represented by the doSomething selector to object.

This is yet another example of a general concept in computer science called Indirection.

link|improve this answer
feedback

There is another subtle difference between the two.

    [object doSomething]; // is executed right away

    [object performSelector:@selector(doSomething)]; // gets executed at the next runloop

Here is the excerpt from Apple Documentation

"performSelector:withObject:afterDelay: Performs the specified selector on the current thread during the next run loop cycle and after an optional delay period. Because it waits until the next run loop cycle to perform the selector, these methods provide an automatic mini delay from the currently executing code. Multiple queued selectors are performed one after another in the order they were queued."

link|improve this answer
Your answer is factually incorrect. The documentation you quote is about performSelector:withObject:afterDelay:, but the question and your snippet are using performSelector:, which is an entirely different method. From the docs for it: <quote>The performSelector: method is equivalent to sending an aSelector message directly to the receiver.</quote> – Jacques Cousteau Nov 5 '11 at 18:48
thanks Josh for the clarification. You are correct; I thought performSelector/performSelector:withObject/performSelector:withObject:afterDela‌​y all behaved the same way which was a mistake. – avi Nov 5 '11 at 20:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.