Hi,
I'm aware that there's a keyword @available which is supposed to be used to determine what version of iOS is available, but I can't find the documentation for it, only examples. I'd prefer to know exactly how it works rather than rely on reading an example and guessing. Where is this documented?
If I write @available(iOS 11, *) does that evaluate true for iOS 11 and later, or just iOS 11? What does the "*" mean? What else could I have typed instead of "iOS 11"? Is "iOS 11" a keyword, or an arbitrary string, or what?
Thanks,
Frank