The Foundation Kit, or just Foundation for short, is an Objective-Cframework in the OpenStep specification. It provides basic classes such as wrapper classes and data structure classes. This framework uses the prefix NS. It is also part of Cocoa and of the Swiftstandard library.
Classes
NSObject
This class is the most common base class for Objective-C hierarchies and provides standard methods for working with objects by managing the memory associated with them and querying them.
NSString and NSMutableString
A class used for string manipulation, representing a Unicodestring. NSString is immutable, and thus can only be initialized but not modified. NSMutableString is a modifiable version.
NSValue and NSNumber
NSValue is a wrapper class for C data types, and NSNumber is a wrapper class for C number data types such as int, double, and float. The data structures in Foundation Kit can only hold objects, not primitive types, so wrappers such as NSValue and NSNumber are used in those data structures.
NSArray and NSMutableArray
A dynamic array of objects, supporting constant-time indexing. NSArray is an immutable version that can only be initialized with objects but not modified. NSMutableArray may be modified by adding and removing objects.
A wrapper for raw byte data. An object of this type can dynamically allocate and manage its data, or it can refer to data owned by and managed by something else.
NSDate, NSTimeZone and NSCalendar
Classes that store times and dates and represent calendrical information. They offer methods for calculating date and time differences. Together with NSLocale, they provide methods for displaying dates and times in many formats, and for adjusting times and dates based on location in the world.
The Foundation Kit is part of the macOS Cocoa API. Beginning as the successor to OPENSTEP/Mach, this framework has deviated from OpenStep compliance, and is in some places incompatible. The Foundation Kit is in the iOS Cocoa Touch API. This framework is based on the macOS Cocoa.
The Foundation Kit is implemented in GNUstep's Base Package. This implementation is mostly comparable and aims to be comparable with both the OpenStep API and later macOS additions. The missing classes have been dropped by Apple as well.
Cocotron
The Foundation Kit is implemented in , an open-source implementation of Cocoa. It is also a part of Darling.
PureFoundation
is an open-source implementation of Foundation that implements Foundation by wrapping Core Foundation, just like in Cocoa, rather than create a separate Foundation from scratch like GNUstep and Cocotron.
SwiftFoundation
SwiftFoundation is Apple's open-source Swift implementation of the Foundation API for platforms where there is no Objective-C runtime. It also includes an implementation of Core Foundation.
ApportableFoundation
ApportableFoundation is an implementation of Foundation Kit based off Apple's CFLite release. It works on Android and other Linux systems, and makes up part of the Darling macOS translation layer for Linux.