I am using xcode4.2 , I want my app to support ios4 and ios5 as well,can someone guide me how can i make sure that my app will support both and how can I test my app in simulator(for ios4 and ios5)
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.
In your target’s summary view (select project icon at top of Navigator view, elect your target in the editor view, select the Summary tab), set the “Deployment Target” to 4.0, then make your code such that you either don’t use any API newer than 4.0 or you conditionally use it based on the installed OS version.