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];
|
I'm still kind of new to Objective-C and I'm wondering what is the difference between the following two statements?
| ||||
|
feedback
|
|
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:
The second form allows you to do this:
before you send the message. | |||||||||||||||||
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 | |||||||||||
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 | |||||||
feedback
|
Means send the doSomething message to object, whereas:
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. | |||
|
feedback
|
|
There is another subtle difference between the two.
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." | |||||
feedback
|