ccbreen
ccbreen

Reputation: 247

How to program for a older version of OS X in Xcode

I currently have Mac OSX 10.7.5 (Lion) running on my computer, along with Xcode 4.5.1. I have made a app that works on my computer and should also work on Mountain Lion, but everyone I know and would like giving it to have either OSX 10.5.8 or 10.6.8 (Snow Leopard). Is there any way I could convert my application so that it is compatable on Snow Leopard? (And yes, I have already tried changing the deployment target).

Thanks!

Upvotes: 0

Views: 170

Answers (1)

Anoop Vaidya
Anoop Vaidya

Reputation: 46543

You can set for backward compatibility as changing few settings

  1. Set the Base SDK to Current version of Mac (ex. 10.7) Set the

  2. Set the Deployment SDK to older version (ex.1.4)

enter image description here

enter image description here

Upvotes: 1

Related Questions