菜鸟教程小白 发表于 2022-12-13 11:12:45

ios - 是否可以在 App Store 中按型号指定兼容的 iOS 设备?


                                            <p><p>我目前正在编写一个仅在 iPad Air 1 + 2 上受支持的应用程序。我正在检查代码中的设备兼容性,但有没有办法在 App Store 上也指定它?</p>

<p>我无法找到任何过去的<code>UIRequiredDeviceCapabilities</code>,它只指定了设备必须具有的某些特征。据我所知,iPad Air 和 iPad 2 之间的 <code>UIRequiredDeviceCapabilities</code> 下没有明显的特征。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用 <code>UIRequiredDeviceCapabilities</code> 是正确的方法。基于此处的列表:
<a href="https://developer.apple.com/library/ios/documentation/DeviceInformation/Reference/iOSDeviceCompatibility/DeviceCompatibilityMatrix/DeviceCompatibilityMatrix.html" rel="noreferrer noopener nofollow">iOS Device Compatibility Reference</a> ,我猜你可以使用 metal 或 opengles-3,它们都只在 iPad Air 机型上可用,但在 iPad 2 上不可用。</p>

<p>我希望这会有所帮助。祝你好运。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 是否可以在 App Store 中按型号指定兼容的 iOS 设备?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32983334/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32983334/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 是否可以在 App Store 中按型号指定兼容的 iOS 设备?