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];
|
3
|
I'm still kind of new to Objective-C and I'm wondering what is the difference between the following two statements?
|
|||
|
|
|
|
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. |
||||||||||||
|
|
|
@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 |
||||||||||
|
|
|
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 |
||||||
|