Reputation: 8320
A mail from apple states that
Starting February 1, new apps and app updates submitted to the App Store must be
built with Xcode 5 and iOS 7 SDK.
I am confused about what does this mean. Does it mean that apps cannot support iOS version below 7? Can I use Xcode 5 & iOS SDK to build app and still support iOS 6?
Upvotes: 0
Views: 2358
Reputation: 6032
This only means that if you want your app in the App store after Feb 1 (new uploads, guess existing apps are safe for some time), you'll HAVE to build it against the 7 SDK (and XCode 5). That does not mean that you can't support previous iOS versions, you still can (google deployment target, more that that check this answer).
For now, if you buid your app against 6 SDK and run it under iOS 7 it will work in compatibility mode, which saves lives sometimes. Since Feb 1 you won't have this opportunity.
To make sure you're fine after Feb 1:
Upvotes: 1
Reputation: 2541
You must download Xcode 5 (I think that it's run only Maverick Operating System for build iOS7 application) and into general tab on the your project set 6.0 in Deployment Target and run your application.
To be sure to test your application with iOS 6 and iOS 7 devices whereas there are a difference between the two operating system.
Upvotes: 0
Reputation: 2225
This means that you have to make apps using xcode 5 only and also it should support iOS7. Now if you need your app to be compatible with iOS 5 , then you can do this.
Upvotes: 5