How do I check for availability of a symbol, rather than OS version, in Swift?

369 Views Asked by At

I have code of the form

if #available(iOS 10.2, *) {
    device = AVCaptureDeviceType.builtInDualCamera
} else {
    device = AVCaptureDeviceType.builtInDuoCamera
}

Is

if #available(AVCaptureDeviceType.builtInDualCamera) {

... possible?

The latter expresses my intention better — if the value builtInDualCamera exists, use it. I couldn't care less whether it was introduced in iOS 10.1 or .2 or .3.

0

There are 0 best solutions below