Matt
Matt

Reputation: 3061

How to mark an iPhone app iOS8 only?

I'm working on an iPhone app that should be only available for iOS 8+ users. How to make that work?

Upvotes: 0

Views: 91

Answers (2)

michal.ciurus
michal.ciurus

Reputation: 3664

You have to set right deployment target in the General options in XCode.

enter image description here

The deployment target setting specifies the lowest operating system version that your app can run on. For example, the lowest available setting for iPad apps is iOS 4.3.

Source: Apple documentation

Upvotes: 4

Drux
Drux

Reputation: 12670

Change the deployment target in the project editor.

enter image description here

Upvotes: 3

Related Questions