Advertisement
Scroll to top
Read Time: 6 min

Enumerations are a common design pattern in many programming languages. While you may be familiar with enumerations in C and Objective-C, Swift's implementation of enumerations is significantly more powerful and flexible. In this quick tip, you'll learn what's special about enumerations in Swift, how to use them in your projects, and what makes them so powerful.

1. What Is an Enumeration?

Enumerations aren't new and they're certainly not unique to Swift. However, if you're familiar with enumerations in C, then you're going to love Swift's powerful take on enumerations.

If enums or enumerations are new to you, then you may not be familiar with what they have to offer. In Swift, enumerations are first class types that define a list of possible values for that type.

An example might be the possible states of a network connection. The possible states could be:

  • disconnected
  • connecting
  • connected

We could add a fourth state for the case the state is unknown. With this example in mind, let's see how to define and implement such an enumeration.

Basics

Like I said, enumerations are first class types in Swift. An enumeration definition looks very similar to a class or structure definition. In the example below, we define the ConnectionState enumeration.

1
enum ConnectionState {
2
    
3
}

The name of the enumeration is preceded by the enum keyword and followed by a pair of curly braces. The ConnectionState enumeration will define the possible states of a network connection. To define these states, we add member values or members to the enumeration's definition. The definition of a member value always starts with the case keyword.

1
enum ConnectionState {
2
    case Unknown
3
    case Disconnected
4
    case Connecting
5
    case Connected
6
}

In C or Objective-C, the above enumeration would look a bit different as illustrated in the example below. Each value of the enumeration corresponds with an integer, for example, ConnectionStateUnknown equals 0, ConnectionStateDisconnected equals 1, etc.

1
typedef enum : NSUInteger {
2
    ConnectionStateUnknown,
3
    ConnectionStateDisconnected,
4
    ConnectionStateConnecting,
5
    ConnectionStateConnected
6
} ConnectionState;

This isn't true in Swift. The members of an enumeration don't automatically correspond with an integer value. The members of the ConnectionState enumeration are values themselves and they are of type ConnectionState. This makes working with enumerations safer and more explicit.

Raw Values

It is possible to explicitly specify the values of the members of an enumeration. In the following example, the members of the ConnectionState enumeration have a raw value of type Int. Each member is assigned a raw value, corresponding with an integer.

1
enum ConnectionState: Int {
2
    case Unknown = -1
3
    case Disconnected = 0
4
    case Connecting = 1
5
    case Connected = 2
6
}

Note that we specify the type of the raw values in the enumeration's definition and that no two member values can have the same raw value. If we only specify a value for the Unknown member, then Swift will automatically increment the value of the Unknown member and assign unique values to the other members of the enumeration. To better illustrate this, the below example is identical to the previous definition of the ConnectionState enumeration.

1
enum ConnectionState: Int {
2
    case Unknown = -1
3
    case Disconnected
4
    case Connecting
5
    case Connected
6
}

2. Working with Enumerations

Initialization

Using the ConnectionState enumeration is similar to using any other type in Swift. In the next example, we declare a variable, connectionState, and set its value to ConnectionState.Connecting.

1
var connectionState = ConnectionState.Connecting

The value of connectionState is ConnectionState.Connecting and the variable is of type ConnectionState.

Swift's type inference is very convenient when working with enumerations. Because we declared connectionState as being of type ConnectionState, we can now assign a new value by using the shorthand dot syntax for enumerations.

1
connectionState = .Connected

Control Flow

Using enumerations in an if or switch statement is straightforward. Remember that switch statements need to be exhaustive. Add a default case if necessary.

1
enum ConnectionState {
2
    case Unknown
3
    case Disconnected
4
    case Connecting
5
    case Connected
6
}
7
8
var connectionState = ConnectionState.Connecting
9
10
connectionState = .Connected
11
12
switch connectionState {
13
    case .Disconnected:
14
        println("Disconnected")
15
    case .Connecting:
16
        println("Connecting")
17
    case .Connected:
18
        println("Connected")
19
    default:
20
        println("Unknown State")
21
}

The following example demonstrates how the ConnectionState enum can be used. It also shows how to access the associated value of an enum member. The canConnect function accepts a ConnectionState instance and returns a Bool.

1
func canConnect(connectionState: ConnectionState) -> Bool {
2
    var result = false
3
    
4
    switch connectionState {
5
        case .Connected(let port):
6
            if port == 3000 {
7
                result = true
8
            }
9
        default:
10
            result = false
11
    }
12
    
13
    return result
14
}
15
16
let state = ConnectionState.Connected(3000)
17
18
if canConnect(state) {
19
    // ...

20
}

The canConnect function only returns true if the ConnectionState instance passed to the function is equal to .Connected and its associated value is an Int equal to 3000. Note that the associated value of the Connected member is available in the switch statement as a constant named port, which we can then use in the corresponding case.

3. Associated Values

Another compelling feature of Swift enums are associated values. Each member of an enum can have an associated value. Associated values are very flexible. For example, associated values of different members of the same enum don't need to be of the same type. Take a look at the following example to better understand the concept of associated values.

1
enum ConnectionState {
2
    case Unknown
3
    case Disconnected
4
    case Connecting(Int, Double)
5
    case Connected(Int)
6
}

The Unknown and Disconnected members don't have an associated value. TheConnecting member has an associated value of type (Int, Double), specifying the port number and timeout interval of the connection. The Connected member has an associated value of type Int, specifying the port number.

It's important to understand that an associated value is linked to or associated with a member of the enumeration. The member's value remains unchanged. The next example illustrates how to create a ConnectionState instance with an associated value.

1
var connectionState = ConnectionState.Connecting(3000, 30.0)

4. Methods and Value Types

Methods

Enumerations are pretty powerful in Swift. Enumerations can even define methods, such as an initializer to select a default member value if none was specified.

1
enum ConnectionState {
2
    case Unknown
3
    case Disconnected
4
    case Connecting(Int, Double)
5
    case Connected(Int)
6
    
7
    init () {
8
        self = .Unknown
9
    }
10
}
11
12
var connectionState = ConnectionState() // .Unknown

In this example, we initialize an instance of the ConnectionState enumeration without explicitly specifying a value for it. In the initializer of the enumeration, however, we set the instance to Unknown. The result is that the connectionState variable is equal to ConnectionState.Unknown.

Value Types

Like structures, enumerations are value types, which means that an enumeration is not passed by reference, like class instances, but by value. The following example illustrates this.

1
var connectionState1 = ConnectionState()
2
var connectionState2 = connectionState1
3
4
connectionState1 = .Connected(1000)
5
6
println(connectionState1) // .Connected(1000)

7
println(connectionState2) // .Unknown

Even though we assign connectionState1 to connectionState2, the values of connectionState1 and connectionState2 are different at the end of the example.

When connectionState1 is assigned to connectionState2, Swift creates a copy of connectionState1 and assigns that to connectionState2. In other words, connectionState1 and connectionState2 refer to two different ConnectionState instances.

Conclusion

Enums in Swift are incredibly powerful compared to, for example, enums in C. One of the most powerful aspects of enumerations is that they are a first class types in Swift. Type safety is a key aspect of the Swift language and enumerations fit perfectly in that mindset.

Advertisement
Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Code tutorials. Never miss out on learning about the next big thing.
Advertisement
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.