objc_super

Specifies the superclass of an instance.

Declaration 宣言

struct objc_super {
    ...
};

Discussion 解説

The compiler generates an objc_super data structure when it encounters the super keyword as the receiver of a message. It specifies the class definition of the particular superclass that should be messaged.

Topics 話題

Fields

Instance Properties インスタンスプロパティ

See Also 参照

Instance Data Types