标签: iphone sdk
有没有办法用xcode检测设备?我的意思是当我的应用程序在iphone 3g上运行时,显示一个警告,声称此功能仅适用于3gs 谢谢 。
答案 0 :(得分:3)
请勿按设备检测,而是按功能检测。
例如,如果您需要指南针,请将magnetometer值添加到UIRequiredDeviceCapabilities的{{1}}数组中(AppStore会过滤iPhone 3G应用。)
magnetometer
UIRequiredDeviceCapabilities
有关详细信息,请参阅http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedFeatures/AdvancedFeatures.html。