Structure

id

A pointer to an instance of a class.

Declaration 宣言

typedef struct objc_object {
    ...
} id;

Overview 概要

When you create an instance of a particular class, the allocated memory contains an objc_object data structure, which is directly followed by the data for the instance variables of the class.

The alloc and allocWithZone: methods of the Foundation framework class NSObject use the function class_createInstance to create objc_object data structures.

Topics 話題

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

See Also 参照

Instance Data Types