As far as I know, it's a pointer to the superclass. It's hard-wired with the superclass, and not dynamically figured out at runtime. Would like to know it more in detail...
Anyone?
|
As far as I know, it's a pointer to the superclass. It's hard-wired with the superclass, and not dynamically figured out at runtime. Would like to know it more in detail... Anyone? |
||||
|
|
|
Essentially, it allows you to use the implementations of the current class' superclass. For the gritty details of the Objective-C runtime:
So yes, it is static, and not determined at runtime. |
||||
|
|
|
It's a keyword that's equivalent to |
|||
|
|
|
|
|||||
|
|
These blog postings on what is a meta class?, getting subclasses and classes and metaclasses may give you some insight on the internals of this. |
|||
|
|