I have specific line of code which only execute if ios version is lower than 15.
I could if-else if ios is great 15 by these.
if #available(iOS 15.0, *) {} else {}
I would to do opposite of it. If ios version is lower than 15 then execute specfic line of code. I know I can write code in else part and it should have work but looking for more ideas and faster way for app