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。