up vote 39 down vote favorite
5
share [g+] share [fb]

Many classes in Cocoa/Cocoa Touch have the NS prefix. What does it mean? Thanks

link|improve this question

feedback

11 Answers

up vote 39 down vote accepted

It's the NextStep heritage

link|improve this answer
feedback

Because Objective-C is an extension of C and thus doesn't have namespaces like in C++, symbols must be prefixed with a unique prefix so that they don't collide. This is particularly important for symbols defined in a frameork. The original code for the Cocoa frameworks came from the NextStep libraries Foundation and AppKit (those names are still used by Apple's Cocoa frameworks), and the NextStep engineers chose to prefix their symbols with NS.

If you are writing an application, such that your code is the only likely ever to use your symbols, you don't have to worry about this, but if you're writing a framework or library for others' use, you should also prefix your symbols with a unique prefix. CocoaDev has a page where many developers in the Cocoa community have listed their "chosen" prefixes. You may also find this SO discussion helpful.

link|improve this answer
feedback

NeXT**S**TEP or NeXTSTEP/Sun depending on who you are asking since Sun had a fairly large investment in OpenStep for a while. Before Sun entered the picture most things in the foundation, even though it wasn't known as the foundation back then, was prefixed NX, for Ne**X**T, and sometime just before Sun entered the picture everything was renamed to NS. The S most likely did not stand for Sun then but after Sun stepped in the general consensus was that it stood for Sun to honor their involvement.

I actually had a reference for this but I can't find it right now. I will update the post if/when I find it again.

link|improve this answer
+1 I've also heard about the NeXT/Sun thing. – Outlaw Programmer Jan 23 '09 at 18:09
Thanks for the history. I didn't know about the NX->NS transition. – Barry Wark Jan 23 '09 at 19:10
It's sad that this answer didn't get marked the "correct" one. – Mitch Haile Feb 20 '09 at 16:09
I've heard the same story from a very reliable source; I'm pretty sure this is the most accurate answer here. – Tyler Aug 26 '11 at 15:18
feedback

Like said, it is the NextStep (= NS) heritage. NeXT was the computer company that Steve Jobs formed after he quit Apple in 1985, and NextStep was it's operating system (UNIX based) together with the Obj-C language and runtime. Together with it's libraries and tools, NextStep was later renamed OpenStep (which was also the name on an API that NeXT developed together with Sun), which in turn later became Cocoa.

These different names are actually quite confusing (especially since some of the names differs only in which characters are upper or lower case..), try this for an explanation:

http://www.objectfarm.org/Activities/Publications/TheMerger/OpenstepConfusion.html

link|improve this answer
feedback

I believe it comes from "NextStep"

link|improve this answer
feedback

When NeXT were defining the NextStep API (as opposed to the NEXTSTEP operating system), they used the prefix NX, as in NXConstantString. When they were writing the OpenStep specification with Sun (not to be confused with the OPENSTEP operating system) they used the NS prefix, as in NSObject.

link|improve this answer
feedback

It is originated from NextStep.

Edit: It appears to be a dup - you can find thorough answers there.

link|improve this answer
It does make it look ugly =D – jpartogi Jun 21 '10 at 9:04
What do you mean? – Vladimir Jun 21 '10 at 9:08
NextStepString, NextStepMutableArray, etc. Fail. – Emil Jun 21 '10 at 10:24
feedback

NextStep heritage

link|improve this answer
feedback

From Cocoa_(API) Wikipedia:

Cocoa classes begin with the acronym "NS" (standing either for the NeXT-Sun creation of OpenStep, or for the original proprietary term for the OpenStep framework, NeXTSTEP): NSString, NSArray, etc.

Foundation Kit, or more commonly simply Foundation, first appeared in OpenStep. On Mac OS X, it is based on Core Foundation. Foundation is a generic object-oriented library providing string and value manipulation, containers and iteration, distributed computing, run loops, and other functions that are not directly tied to the graphical user interface. The "NS" prefix, used for all classes and constants in the framework, comes from Cocoa's OPENSTEP heritage, which was jointly developed by NeXT and Sun.

link|improve this answer
feedback

NS stands for NextStep and generally these NS header file present in Foundation.framework (Wow !A lot of NS).

link|improve this answer
feedback

Actually, it seems that NS stands for NeXT Software, which is the company who made NeXTSTEP.

At least that's what people in CocoaDev.com say.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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