Simple enum and interpolation:
enum Test {
case test1
case test2
case test3
}
let a = Test.test1
let b = "\(a)"
From debug window I get:
a = (Test) test1
b = (String) "unknown()"
The problem is that this occurs in my project but not in a playground.
In project:
In playground:
In log I get:
SWIFT RUNTIME BUG: unable to find field metadata for type 'ProjectName.(unknown context at 0x10672213c).Test'
What can be a problem? Project target iOS is 9. I did convert project to swift 4.2. I had this issue on XCode 10 betas and was hoping it will get fixed, but I guess it's not an IDE or Swift problem.
You need to make sure the "Reflection Metadata Level" build setting is enabled:
The description of this build setting can be found here:
Reflection Metadata Level (SWIFT_REFLECTION_METADATA_LEVEL)
This setting controls the level of reflection metadata the Swift compiler emits.
- All: Type information about stored properties of Swift structs and classes, Swift enum cases, and their names, are emitted into the binary for reflection and analysis in the Memory Graph Debugger.
- Without Names: Only type information about stored properties and cases are emitted into the binary, with their names omitted.
-disable-reflection-names
- None: No reflection metadata is emitted into the binary. Accuracy of detecting memory issues involving Swift types in the Memory Graph Debugger will be degraded and reflection in Swift code may not be able to discover children of types, such as properties and enum cases.
-disable-reflection-metadata
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With