Please tell me which version of the iOS SDK i should use so that my app works on iPhone 3.0 or later.
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.
There are two different concepts you should be aware of:
The Base SDK
This is what you use to build your application. The most recent release is 4.2 so you should use that to build your applications against.
The iOS Deployment Target
This is the target version of iOS you are building for. In your case, you set that (in Project or Target settings of Xcode) to “iOS 3.0”.
The rest is up to you. You are, of course, building for many versions of the SDK, so if you use something that was introduced in any SDK after 3.0, you need to test for that functionality explicitly.