Swift version: 5.10
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)
}
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until February 9th.
Sponsor Hacking with Swift and reach the world's largest Swift community!
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.