First page Back Continue Last page Graphics
Objective 'C' OOP basics
NSObject declares one instance variable, called isa, which holds pointer to the Object's class.
NSObject instance variable is called isa because inheritance sets up 'is a' relationship between subclass and super class
Every method call gets a hidden parameter, called self, which is the pointer to the Object that receives message. Methods use self parameter to find instance variable they use.