Is there a way to make sure that an app will run on osx 10.5 when compiling from osx 10.7 (xcode 4.4)?
Or at least, that it has successfully compiled for 10.5?
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.
You should set the deployment target to OS X 10.5. Ensure that you don’t use any API that wasn’t available on 10.5 (or, if you do, that you use it weakly and have a fallback code path that will be used if the APIs aren’t available). Test your application on 10.5.
Options for fallback coding:
NSClassFromString()NULLdlopen(), falling back if they don’t exist