SDK 和 iOS 部署目标。

发布于 2024-10-12 01:16:08 字数 91 浏览 2 评论 0原文

我使用最新的 SDK (4.1) 构建项目并设置“iOS 部署目标”(3.0)。如果我使用4.0 sdk的某些方法,我可以在真正的iPhone 3.0上运行我的项目吗?

I build my project with the latest SDK (4.1) and set "iOS Deployment Target" (3.0). Can I run my project on a real iPhone 3.0 if I use some methods of 4.0 sdk?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

作妖 2024-10-19 01:16:08

如果您围绕要使用的 OS 4 方法进行条件编码,则只能在 OS 3 设备上运行您的项目。如果您在 iOS 3 设备上调用仅存在于 iOS 4 中的方法,您的应用程序将会崩溃。您可以通过检查 iOS 版本号和使用 [...respondsToSelector:] 方法来完成此操作。

You can only run your project on OS 3 devices if you conditionally code around the OS 4 methods you want to use. If you called a method that only existed in iOS 4 on an iOS 3 device your app would crash. You can do this through both checking iOS version numbers and using the [... respondsToSelector:] method.

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