I know that when we want to create an unknown value object we use id. However, I'm curious that why did Apple to choose id which decides it's value during runtime, when every object is a subclass of NSObject. So instead of id delegate we could have used NSObject *delegate Does anyone know why? Thanks.
|
|
||||
|
|
If the type were With strict/correct types, the compiler can kick in and help you out, which is great because ObjC is a very dynamic language.
Objective-C does not support generics - you cannot, for example, declare an So, let's expand on this with some real code. Example A
Example B And now let's say
Related to your example, I actually declare my delegates and parameters as NSObjects with protocols:
|
|||||||||
|
That is an incorrect statement. You can create objects that do not inherit from NSObject. it's not really recommended, but it is possible.
|
|||||||||||||||||
|
That's not correct. You could make an object that extends from nothing as a root class. That's perhaps why id was introduced. |
||||
|
|
Above is the actual definition of the
I think, this is because it is originally |
|||
|
|
