Philip Dukhov
02/06/2021, 10:20 AMobject CallFeature {
data class State {
enum class Status {
Calling,
Incoming,
}
enum class ViewPoint {
Both,
Self,
Partner,
}
}
}
[SharedMobileCallFeatureStateViewPoint partner]: unrecognized selector sent to instance 0x28325adc0.
It happens both when I try to compare viewPoint == .parent
or making a switch
I can’t seem to find any diffs with other enums at the same level - those are working well
Have anyone faced something similar?Nikolay Kasyanov
02/06/2021, 11:22 AMPhilip Dukhov
02/06/2021, 12:18 PMPhilip Dukhov
02/06/2021, 12:44 PMPhilip Dukhov
02/06/2021, 1:21 PMSelf
as a enum case.