微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

swift – 枚举的字符串插值产生“unknown()”字符串

简单的枚举和插值:

enum Test {
    case test1
    case test2
    case test3
}

let a = Test.test1
let b = "\(a)"

从调试窗口我得到:

a = (Test) test1
b = (String) "unkNown()"

问题是这发生在我的项目中,而不是在操场上.

在项目中:

in project

在操场上:

in playground

在日志中我得到:

SWIFT RUNTIME BUG:无法找到类型’ProjectName的字段元数据.(0x10672213c处的未知上下文).Test’

有什么问题?项目目标iOS是9.我确实将项目转换为swift 4.2.我在XCode 10测试版上遇到过这个问题,并希望它能得到修复,但我想这不是IDE或Swift问题.

解决方法

您需要确保启用“反射元数据级别”构建设置:

enter image description here

可以在here找到此构建设置的说明:

Reflection Metadata Level (SWIFT_REFLECTION_MetaDATA_LEVEL)

This setting controls the level of reflection Metadata the Swift compiler emits.

  • All: Type @R_810_4045@ion 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 @R_810_4045@ion 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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐