101 - (
BOOL)isEqual:(
id)anObject;
id alloc()
Allocate a new class instance.
#define OBJC_ROOT_CLASS
A macro to declare a class as a root class.
Class class()
Returns the class of the instance.
id init()
Initialize the instance, after allocation.
bool BOOL
A Boolean value.
Class superclass()
Returns the superclass of the instance.
The root class of all Objective-C classes.
const char * name()
Returns the name of the class.
struct objc_class * Class
A pointer to a class definition.
void initialize()
Performs one-time initialization for the class.
void dealloc()
Free resources for an existing instance.
Class isa
A pointer to the object's class structure.
struct objc_object * id
A pointer to an instance of a class.
Protocol class definition.