如何打印EKRecurrenceFrequency枚举的名称而不是其int值?

时间:2019-03-14 16:01:42

标签: swift enums

EKRecurrenceFrequency是内置的枚举,因此我必须按原样使用它。 因此,将频率设置为枚举值:

constructor(private viewContainer: ViewContainerRef) {}

ngOnInit() {
    if(this.viewContainer[ '_data' ].componentView.parent.component.constructor.name === 'Parent') {
      this.parent.isHappy = true
    }
}

然后在调试器中打印:

let freq = EKRecurrenceFrequency.daily

以上都不打印枚举的名称:“ daily”。 知道怎么做吗?

使用Xcode 10.1,Swift 4.2。

0 个答案:

没有答案