iPhone 应用程序无法在 iPod 上运行,因为它不兼容

发布于 2024-08-08 23:09:41 字数 319 浏览 2 评论 0原文

我向应用程序商店提交了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人生百味 2024-08-15 23:09:41

针对不同版本的操作系统进行条件编译不应影响应用程序可以在哪些设备上运行。

确保您已在应用的构建设置中正确设置部署目标设置。应将其设置为您支持的 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文