An Xcode project has the following settings:
Deployment target: iOS 9.0
Base SDK: iOS 9.3 (latest)
As I understood it, the app can be installed on iOS 9.0 and possibly try to access an API that is only available since iOS 9.3. In that case the app would crash.
So how do I easily find out which APIs that are accessed by the app are not available in any version between the deployment target and the version previous to the base SDK? Since the deployment target is known to the compiler, shouldn't it issue a warning when an API is used in code that will obviously crash the app when run on an iOS version below it's introduction?