What is the difference between the NS and non NS classes? Particularly NSDate
vs Date
? Does NS
represent some type of wrapper around the core non NS
functionality?
Swift 3 introduced some new overlay value types for existing
Foundation class types, such as Date
for NSDate
, Data
for
NSData
and some more. The full list and details can be found in
Some of the reasons were
let
and var
instead of mutable and immutable variants,The new overlay types should provide all functionality that the corresponding Foundation type has, but if necessary, you can always cast from one type to the other.
When existing Foundation APIs are imported into Swift, the types are bridged automatically.
With respect to Date
and NSDate
: Date
is a value type
and can be a constant or variable:
var date = Date()
date += 10.0 // Add 10 seconds
whereas NSDate
is a reference type and immutable.
Also Date
is Comparable
let date1 = Date()
let date2 = Date()
if date1 < date2 { }
whereas NSDate
s can only be compared with .compare()
.
Remark: For these "overlay types", the value type (struct)
such as Date
and its Foundation counterpart (class) such as NSDate
are different types and both can be used from Swift.
It must not be confused with
where the NS
prefix has simply been dropped for certain Foundation
classes, e.g. NSBundle
is renamed to Bundle
for Swift 3.
NS classes are Objective-C classes. As Objective-C is the older programming language for iOS or MacOS applications, Swift allows you to use those classes structs in your code. So you can migrate applications from Objective-C to Swift if you want to.
The non-NS classes or structs are the Swift equivalents of the the NS classes or structs. You can read more about this issue here or here.
But be aware: As Objective-C and Swift do are different programming languages, it can happen that NS and non-NS classes are not completely working the same way.
As well as the answers given above, in a more surface literal design sense, NS was a prefix given to everything in the NextStep days, before Steve Jobs was called back to Apple, and so was a natural part of Objective-C syntax.
Fast forward to the development of Swift, they needed a point of obvious difference, abd it could well have been CL as a prefix, (for Chris Lattner) but obviously chose to have an absence of any prefix
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With