【发布时间】:2011-05-12 08:11:09
【问题描述】:
我不能使用“需要呼叫功能”,因为它需要与 iPad 兼容。
【问题讨论】:
-
是什么让它可以在 iPad 上运行但不能在 iPod touch 上运行?
-
@BoltClock 两个字……客户
标签: iphone ios ipod-touch
我不能使用“需要呼叫功能”,因为它需要与 iPad 兼容。
【问题讨论】:
标签: iphone ios ipod-touch
iPhone 1G: A-GPS, accelerometer, camera -- --
iPhone 3G: A-GPS, accelerometer, camera -- --
iPhone Simulator: A-GPS, accelerometer -- -- --
iPhone 3GS: A-GPS, accelerometer, camera compass, --
iPhone 4: A-GPS, accelerometer, camera, compass, gyroscope
iPad: A-GPS, accelerometer -- compass, --
iPad 2: A-GPS, accelerometer, camera, compass, gyroscope
iPod Touch 1G: -- accelerometer -- -- --
iPod Touch 2G: -- accelerometer -- -- --
iPod Touch 3G: -- accelerometer -- -- --
iPod Touch 4G: -- accelerometer, camera, -- gyroscope
所以试试类似的东西
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>gps</string>
<string>location-services</string>
</array>
【讨论】: