How to develop iOS 3.1.3 app in Lion?

701 Views Asked by At

I want to develop application for iOS 3.1.3 in Lion OS (10.7.3). Can I develop it? What Xcode I must use to develop iOS 3.1.3 app? Now I use Xcode 4.2.1 and I can create iOS 3.1.3 project cause iOS 5.0 have a different type with 3.1.3.

Thanks before. Regards. :)

2

There are 2 best solutions below

1
On

You can download additional SDKS from the XCode->Preferences->Downloads. Install older iOS SDK's and simulators, as well as debugging tools from here. After downloading the iOS 3.x and 4.x SDKS, you can build apps that will run on older iOS versions. You then need to set the build versions in the project settings to whatever SDK you want to build. However, you must know that while developing for older versions is a great practice, it may end up being a lot of extra work because different features are not supported (I.e. ARC memory management). Lastly, building for iOS 3.x may be less-useful at this point, because iOS 3 is going to be deprecated in the upcoming months. Just a few things to consider.

1
On

To Change your IOS SDK setting . Simply create your new project and click on your project tab(LEFT PANE).

After that select PROJECT in next LEFT PANE .

After this new tabbar appeared there is 2 tabs INFO/BUILD SETTING .

Select BUILD SETTING . There you find ARCHITECTURE>BASE SDK.

In Base SDK menu you can select your required SDk to develop your application.

Hope this will help you.