How do I check the iOS deployment target in a Swift conditional compilation statement?
I've tried the following:
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0
// some code here
#else
// other code here
#endif
But, the first expression causes the compile error:
Expected '&&' or '||' expression
TL;DR? > Go to 3. Solution
1. Preprocessing in Swift
According to Apple documentation on preprocessing directives:
That is why you have an error when trying to use
__IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0
which is a C preprocessing directive. With swift you just can't use#if
with operators such as<
. All you can do is:or with conditionals:
2. Conditional compiling
Again from the same documentation:
true
andfalse
: Won't help usos(iOS)
orarch(arm64)
> won't help you, searched a bit, can't figure where they are defined. (in compiler itself maybe?)3. Solution
Feels a bit like a workaround, but does the job:
Now for example, you can use
#if iOSVersionMinRequired7
instead of__IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_7_0
, assuming, of course that your target is iOS7.That basically is the same than changing your iOS deployment target version in your project, just less convenient... Of course you can to Multiple Build configurations with related schemes depending on your iOS versions targets.
Apple will surely improve this, maybe with some built in function like
os()
...