Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

12 Answers

up vote 96 down vote accepted

It's the NextStep heritage

share|improve this answer
51  
It probably wouldn't of hurt to briefly explain what the NextStep heritage is. -1. – Nick Apr 24 '12 at 23:26
3  
...or perhaps the NeXT/Sun heritage (Sun was a participant in the OpenStep consortium) – Barry Wark Aug 8 '12 at 15:33
6  
Yes, of course. It's all beautifully laid out in the other answers, that's why I didn't bother copying that information into mine. Sorry if that offends someone - I don't mind if the accepted answer changes to one of the others (if that's possible - never checked that). – Olaf Kock Aug 8 '12 at 20:21

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.

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 framework.

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.

share|improve this answer
17  
Bummer bad answers sometimes get accepted as the right ones. This answer is by far more informative than the accepted. – Nick Apr 24 '12 at 23:30
11  
What if the accepted answer gives the one key information OP needed? I'd accept that answer, too. – Marko Topolnik May 8 '12 at 21:06

NeXTSTEP or NeXTSTEP/Sun depending on who you are asking.

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 NeXT, 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.

share|improve this answer
+1 I've also heard about the NeXT/Sun thing. – Outlaw Programmer Jan 23 '09 at 18:09
1  
Thanks for the history. I didn't know about the NX->NS transition. – Barry Wark Jan 23 '09 at 19:10
2  
It's sad that this answer didn't get marked the "correct" one. – Mitch Haile Feb 20 '09 at 16:09
2  
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

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

share|improve this answer

From Cocoa_(API) Wikipedia:

(emphasis added)

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.

share|improve this answer
Wikipedia is wrong here. Foundation Kit first appeared in Enterprise Objects Framework, which predates OpenStep. Incidentally the NeXT version of Foundation was supposedly based on a CoreFoundation-like C API, but that wasn't exposed as public interface until Mac OS X. – Graham Lee May 3 at 10:55
1  
Ah WTH I just edited wikipedia too :-). – Graham Lee May 3 at 11:01

I believe it comes from "NextStep"

share|improve this answer

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.

share|improve this answer

It is originated from NextStep.

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

share|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
1  
NextStepString, NextStepMutableArray, etc. Fail. – Emil Jun 21 '10 at 10:24

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.

share|improve this answer

From Apple's developer docs:

Historical Note: If you’re wondering why so many of the classes you encounter have an NS prefix, it’s because of the past history of Cocoa and Cocoa Touch. Cocoa began life as the collected frameworks used to build apps for the NeXTStep operating system. When Apple purchased NeXT back in 1996, much of NeXTStep was incorporated into OS X, including the existing class names. Cocoa Touch was introduced as the iOS equivalent of Cocoa; some classes are available in both Cocoa and Cocoa Touch, though there are also a large number of classes unique to each platform. Two-letter prefixes like NS and UI (for User Interface elements on iOS) are reserved for use by Apple.

Source: Programming with Objective-C

share|improve this answer

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

share|improve this answer

NS -> "Next Step" !!!!!! and it helps me a lot in searching..rather than adding "...in objectiveC " in my questions!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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