Add macros to your Objective-C types to group their values in Swift.
Overview
You use one of the following macros to declare that several Objective-C constants are related to each other:
NS
for simple enumerations_ENUM NS
for simple enumerations that can never gain new cases_CLOSED _ENUM NS
for enumerations whose cases can be grouped into sets of options_OPTIONS NS
for enumerations with a raw value type that you specify_TYPED _ENUM NS
for enumerations that you expect might gain more cases_TYPED _EXTENSIBLE _ENUM
Declare Simple Enumerations
Use the NS
macro for simple groups of constants.
The example below uses the macro to declare a UITable
enumeration that groups several different view styles for table views:
In Swift, the UITable
enumeration is imported like this:
Enumerations imported using the NS
macro won't fail when you initialize one with a raw value that does not correspond to an enumeration case. This characteristic facilitates compatibility with C, which allows any value to be stored in an enumeration, including values used internally but not exposed in headers.
The NS
macro is the only enumeration macro that results in an actual enumeration type when imported to Swift. The other enumeration macros generate structures.
Declare Closed Enumerations
Use the NS
macro for a simple group of constants that you can never add new cases to. Closed enumerations are useful for representing a finite set of states that you expect people to switch over using a switch statement. The three cases of Comparison
—Comparison
, Comparison
, and Comparison
—are an example of a finite set. They're the only logical cases for performing an ordered comparison during tasks like sorting.
Don't use the NS
macro if:
You've ever added cases to an enumeration after its initial declaration
You can think of additional cases you might add later
The enumeration has any private cases
In these scenarios, use the NS
macro instead.
Declare Option Sets
You use the NS
macro when two or more constants in a grouping of constants can be combined. For example, the output formatting for a JSONEncoder
instance can be sorted and can use ample white space at the same time, so it's valid to specify both options in an option set: [.sorted, .pretty
.
The example below shows how to apply the NS
macro and assign raw values that are mutually exclusive:
The increasing sequence of nonnegative integers used along with the bitwise left shift operator (<<
) ensures that each option in the option set takes up a unique bit in the binary representation of the raw value.
Here's how the UIView
type is imported to Swift:
Declare Typed Enumerations
You use the NS
to group constants with a raw value type that you specify. Use NS
for sets of constants that can't logically have values added in a Swift extension, and use NS
for sets of constants that can be expanded in an extension.
The example below uses the NS
macro to declare the different colors used by a traffic light:
The number of colors that a traffic light uses isn't expected to grow, so it's not declared to be extensible.
Here's how the Traffic
type is imported to Swift:
Declare Typed Extensible Enumerations
Extensible enumerations are imported in a similar fashion to nonextensible ones, except that they receive an additional initializer.
The examples below show how a Favorite
type is declared, imported, and extended. The first one declares the Favorite
type and adds a single enumeration case for the color blue:
The additional initializer omits the label requirement for its first parameter:
You can add extensions to extensible enumerations later in your Swift code.
The example below adds another favorite color:
Note
You might encounter Objective-C code that uses the older NS
and NS
macros, which were used to group string constants. Use NS
and NS
when grouping related constants of any type, including string constants.