Geek
Geek

Reputation: 8320

Can we use iOS 7 SDK and still support iOS version below 7?

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

Answers (3)

MANIAK_dobrii
MANIAK_dobrii

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:

  1. Use XCode 5.
  2. Select your project file and go to Build Settings.
  3. Base SDK should be 7 ("Latest iOS" for now).

Upvotes: 1

Alessandro Pirovano
Alessandro Pirovano

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.

enter image description here

Upvotes: 0

Ashutosh
Ashutosh

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

Related Questions