typedef struct objc_object { Class isa; } *id;
Technorati ProfileCopyright © Scott Stevenson 2004-2006
by Jesper — Oct 28, 07
`id` is the type of a pointer to a struct whose first field has the type Class.
typedef struct objc_object { Class isa; } *id;and so on.