Raju Panwar
Raju Panwar

Reputation: 21

iOS 5 Screen size without using [email protected]

I am using iOS 6, and have set the deployment target as 5.0. But Appstore does not allow [email protected] with iOS version lower than 6. Is there any way to handle the screen size of 4 inch screen without using default image?

Upvotes: 2

Views: 648

Answers (1)

Thibaut LE LEVIER
Thibaut LE LEVIER

Reputation: 245

To be able to start with the 4inch size on the iPhone 5 you have to add a [email protected] splash screen and compile with the iOS 6 SDK.

Of course you can still use you deployment target to 5.0+ while you are building your app with the iOS 6 SDK as base SDK (the deployment target and the base SDK are 2 different things, with the iOS 6 SDK you can target iOS 4.3+)

If you add a iPhone 5 splash screen and you're using the iOS 5 SDK as base SDK, you app will be rejected.

A short tips: try to create a new project with the latest Xcode version and you will find a basic [email protected] black splash screen which will allow you to start on the iPhone 5 screen size without artwork.

Upvotes: 3

Related Questions