Swift version: 5.10
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.
SPONSORED Join some of the App Store’s biggest apps—from brands like Mojo and Citizen to thriving indies. Test pricing, run paywall experiments, update locked features, and now, launch web checkout links straight from your app—all without updates. Superwall is your complete growth toolkit.
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.