Swift version: 5.6
There are three ways of adding one array to another, and you can use whichever syntax you prefer.
First, make a couple of test arrays to work with:
var first = ["John", "Paul"]
let second = ["George", "Ringo"]
Note: I made the first
array mutable so we can join the second array to it.
One option for joining arrays is the append(contentsOf:)
method, used like this:
first.append(contentsOf: second)
Another option is using the +=
operator, which is overloaded for arrays to combine elements:
first += second
The third option is to use a regular +
to create a new array by combining two others:
let third = first + second
All three options produce the same resulting array, albeit with different approaches.
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Available from iOS – learn more in my book Pro Swift
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.