Swift version: 5.6
Swift has a built-in Mirror
struct that lets us query any kind of data in our code. It’s most commonly used to read through the list of properties that are available, but it’s also used in playgrounds to print out user-readable values inside types.
To get started, first create a custom type then an instance of that type:
struct Person {
var name = "Taylor Swift"
var age = 26
}
var taylor = Person()
You can now instantiate a Mirror
object from taylor
, like this:
var mirror = Mirror(reflecting: taylor)
That mirror isn’t a copy of taylor
, a reflection of it – something you can inspect. For example, you can loop over all the properties inside taylor
and print out their names and values like this:
for case let (label?, value) in mirror.children {
print (label, value)
}
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 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.