Will backward compatibility supported for iOS?
If I have built for iOS 4.3 my App, will it run on a device with OS 4.2?
Will backward compatibility supported for iOS? If I have built for iOS 4.3 my
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends what you mean by “built for”. Backward compatibility is not defined by the release number of the SDK you are building against. For example, with the SDK 4.3, you can build applications that will run on iOS 4.2 (and earlier of course).
You define the minimum version of iOS your application will support, by filling in the Deployment Target entry of the target info page. If you put “4.3” in there, then your application will not even install on a machine running iOS 4.2 or earlier.
It also remains then your responsibility not to use APIs that are not available on the versions of iOS you want to support.