iOS - will my app work on iOS 7.0?

121 Views Asked by At

I am new to iOS development, and my Xcode deployment target is configured to version 7.1. How can I know if it'll work for version 7.0?

1

There are 1 best solutions below

0
On

As per Apple Guidelines, The deployment target setting specifies the lowest operating system version that your app will run on. So if you build any app with deployment target of 7.1, then you will not be able to support anything below that version.

Refer Apple guidelines for more details.