tags:

views:

89

answers:

2

Hello all. i trying to understood class hierarchy. which are the sub class of NSObject. are there any graphical representation?

A: 
Steve
No, you're not. If you make a new class without an explicit parent class, it becomes a root class. It does not automatically inherit from NSObject.
Jonathan Grynspan
@johnathan; I was wrong... good point. But then I think you lose all the standard features you'd expect from an objective-c class (like the alloc method, etc).
Steve
A: 

The class browser under Project>Class Browserwill display a hierarchal view of all the classes. There are a lot of them.

TechZen