问题
I am developing one iphone app. But I want to restrict my app to install only on device swith Retina Display. So my decision is to add UIRequiredDeviceCapabilities key in plist file with front facing camera required so that my app will install on only devices with Retina Display.
So my question is does Apple reject my app as my app doesn't use front facing camera still I have added it to UIRequiredDeviceCapabilities ? Also anybody has any other solution to restrict the to install on devices with Retina Display only?
Any kind of help is appreciated. Thanks.
回答1:
There is no direct requirement for installing only on Retina devices, but for iPhone/iPod Touch with retina you can set front-facing-camera
requirement to UIRequiredDeviceCapabilities
dictionary.
Front facing camera available only on iPhone 4 or later and iPod Touch 4th gen or later
PS: It's look like a hack if your application doesn't work with this camera, so I'm not sure about reviewing process.
来源:https://stackoverflow.com/questions/10996105/restrict-the-iphone-app-to-install-on-only-devices-with-retina-display-iphone-4