vote up 1 vote down star

Hello,

I'm learning Objective-C and as I can see, in some tutorials they use Object(imported from objc/Object.h) and in others i see the use of NSObject(imported from Foundation/NSObject.h), but what are the main differences between they?

Regards.

flag

Can you give us a link to one of those tutorials that uses Object? – gs Oct 19 at 17:53
See: tenon.com/products/codebuilder/… – Nathan Campos Oct 19 at 17:54

3 Answers

vote up 3 vote down check

You should ignore Object.

Objective-C allows multiple root classes. Object is a root class that predates NSObject. It's never something you would want to go use. It's only relevant when something somehow already interacts with Object, so you have to deal with it. This is very rare.

Object doesn't implement -retain and -release, for example.

link|flag
Then i can import NSObject and i will not have any problems with the syntax? – Nathan Campos Oct 19 at 19:49
Not quite sure what you mean, but probably yes. You might also want to ignore the tutorial you linked that uses Object. I think you'll have a hard time finding any others that refer to it. – Ken Oct 20 at 1:36
vote up 3 vote down

NSObject contains all the infrastructure of the Cocoa framework. In other words it conforms to several protocols that Object does not and will respond to certain methods that Object will not. Specifically see NSObject Class Reference and

link|flag
I going to take a look at this reference. Thanks. – Nathan Campos Oct 19 at 18:04
Glad to have helped! – ennuikiller Oct 19 at 18:07
vote up 4 vote down

Objective-C is just the language.

The Cocoa frameworks use the NSObject base class as the root class for the hierarchy. Other implementations use their own root classes, in your case the Object class.

link|flag
I don't use Cocoa, because i'm on Linux, then i use GNUstep with gcc. ;) – Nathan Campos Oct 19 at 18:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.