我想在 Swift 中使用枚举来处理学校科目等内容。如果有人想要另一个不在枚举中的主题,他可以输入主题作为自定义值。例如:
enum Subjects {
case Math
case German
case French
case Chemistry
case another //type in which it is
}
var example1 = Subjects.Math
var example2 = Subjects.another("Physics")