SDK 和 iOS 部署目标。
我使用最新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您围绕要使用的 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.