排除 iPhone3GS 及以下版本下载我的应用程序
如何排除 iPhone 3GS 及以下用户下载我的应用程序?我知道有人问过这个问题,但应用程序商店变化很快,所以我想确保我以正确的方式做这件事。是否有地方可以选择在构建设置中排除哪些内容?或者我必须设置 UIRequirements 吗?
PS:我想排除它们的原因是因为我的 GUIElements 会不合适。
How can I exclude iPhone 3GS users and below from downloading my app? I know this has been asked, but the app store changes rapidly, so I want to make sure I am doing it the right way. Is there any place to select what to exclude in the build settings? Or do I have to set UIRequirements?
PS: The reason I want to exclude them is because my GUIElements would be out of place.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用属性
UIRequiredDeviceCapability
,您可以在 Xcode 项目中找到的属性列表 (plist) 文件中设置此选项。如果您想排除 iPhone 3GS 及更低版本,您可以测试前置摄像头。祝你好运!
来源。
You can use the property
UIRequiredDeviceCapabilities
, you set this options in the properties list (plist) file found in your Xcode project. If you want to exclude iPhone 3GS and lower you could test for a front-facing camera.Good luck!
Source.
您可以使用
UIRequiredDeviceCapability
并要求应用程序具有前置摄像头You can use
UIRequiredDeviceCapabilities
and require the app has a front-facing-camera