I tried to downcasting from Any type to UIAccessibilityIdentification but always failed
let button: Any = UIButton(frame: CGRect.zero)
let accessIden = button as? UIAccessibilityIdentification
Result always nil.
I don't known the reason for this.
Can anyone explain?
Thanks,