Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use UIRequiredDeviceCapabilities to restrict an app to iPads and the iPhone 6+?

I have an app whose UI needs quite a lot of screen space. At the moment, it's iPad only, but I think it would be OK on the iPhone 6+. I'd like to make it a universal app but restrict it to iPads and the iPhone 6+. Is there some combination of device capabilities I can set to achieve this?

like image 984
Simon Avatar asked Sep 25 '14 09:09

Simon


1 Answers

You can't.

Because iOS 8 supports devices with 3.5" & 4" screens, you can't use the only-support-iOS-x technique.

Also, there isn't a setting in Xcode or a key for requiredDeviceCapabilities which allows you to make the app for iPhone 6+ only.

like image 179
LS_ Avatar answered Nov 15 '22 16:11

LS_