user3549213
user3549213

Reputation: 1

Deployment Target and Different OSXs

here is my dev/project settings: Deployment Target - 10.6 SDK: 10.9 Architecture: Universal 32/64.

Now when I archive and try to run it on ML 10.8 (other machine not my dev machine); It crashes and gives me "Classic environment is o longer supported" error.

I have not tested it yet on 10.6 though but what is the best way to keep my app running fine on all of them 10.6+ ?

Also I am using ASIHTTP and setting it to "-fno-objc-arc" in build-phases.

Please help.

I have set my project's Deployment Target to 10.6 to support older machines.

Upvotes: 0

Views: 103

Answers (1)

user2105505
user2105505

Reputation: 708

The Classic environment is no longer supported shouldn't be occurring based on the information your provide, as that refers to code written for OS 9, not OS X. However, based off of my own experience (this question), besides setting the deployment target to 10.6, you must also turn off base internationalization and auto layout for your NIBs. Good luck!

Upvotes: 1

Related Questions