iPhone 应用程序无法在 iPod 上运行,因为它不兼容
我向应用程序商店提交了一个 iPhone 应用程序,但它无法在 iPod touch 上运行,并显示不兼容的消息。我没有在该应用程序上使用任何电话功能 当我第一次向商店提交应用程序时,我在新 SDK 上使用了一些已弃用的方法。所以我为条件编译制作了预处理器指令,如下所示:
#if __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_2_2
// iPhone 3.0 code here
#else
#endif
这可能是不兼容问题的原因吗?我将不胜感激任何帮助。
提前致谢, 莎拉
I submitted an iPhone application to the app store, but it is failed to run on iPod touch with the message that it is not compatible.I'm not using any Phone features on the application
when I first I submitted the application to the store I was using some deprecated methods on the new SDK. so I made pre-processor directives for the conditional compilation like this:
#if __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_2_2
// iPhone 3.0 code here
#else
#endif
Can this be the reason for the non compatible issue. I would appreciate any help.
Thanks in advance,
Sarah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
针对不同版本的操作系统进行条件编译不应影响应用程序可以在哪些设备上运行。
确保您已在应用的构建设置中正确设置
部署目标
设置。应将其设置为您支持的 iPhone 操作系统的最低版本。您能否列出您在应用程序中使用的主要功能的简短摘要?
Conditionally compiling for different versions of the OS shouldn't affect what devices the app can run on.
Make sure that you have correctly set the
Deployment Target
setting in your build settings for your app. It should be set to the lowest version of the iPhone OS that you support.Would you be able to list a brief summary of the main features you're using in your app?