David Liu
David Liu

Reputation: 17594

How to deal with Xcode update to recommend settings warning?

Recently, I upgraded to Xcode 6. Anything works well except I got a new warning indicates me to upgrade iOS Deployment Target to 8.0. Bellow is a screen shot of the message.

recommend upgrade iOS Deployment Target to 8.0

However, I don't want to upgrade deployment target because I want to support any device that has OS version 7.0 and above.

How to ignore this warning? Or perhaps iOS Deployment Target setting has nothing to do with the lowest OS version that my app can support?

Upvotes: 5

Views: 5029

Answers (1)

simonthumper
simonthumper

Reputation: 1844

I think there is a bit of confusion here, there is a difference between the Base SDK setting and the Deployment Target. Deployment target determines which versions of iOS you support, the SDK version simply determines which version of the SDK you are using to write your code. As long as you don't use any code which requires iOS 8 (Or if you want to use it check that it is available: Checking For Class Availability). So to fix this, you should click Perform Changes. You will still be able to run your app on iOS 7 :)

Upvotes: 5

Related Questions