I want to execute a code block only on devices running with an OS older than iOS8
. I can't do:
if #available(iOS 8.0, *) == false {
doFoo()
}
The solution I'm using for now is:
if #available(iOS 8.0, *) { } else {
doFoo()
}
, but it feels clunky. Is there another way to negate the #available
statement elegantly with Swift ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…