如果我为 iOS 4.3 构建了我的应用程序,它可以在 OS 4.2 的设备上运行吗?
iOS 是否支持向后兼容性? 如果我为 iOS 4.3 构建了我的应用程序,它可以在 OS 4.2 的设备上运行吗?
Will backward compatibility supported for iOS?
If I have built for iOS 4.3 my App, will it run on a device with OS 4.2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于您所说的“构建”的含义。向后兼容性不是由您构建的 SDK 的版本号定义的。例如,使用 SDK 4.3,您可以构建将在 iOS 4.2(当然以及更早版本)上运行的应用程序。
您可以通过填写目标信息页面的部署目标条目来定义您的应用程序将支持的最低 iOS 版本。如果您在其中输入“4.3”,那么您的应用程序甚至不会安装在运行 iOS 4.2 或更早版本的计算机上。
您还有责任不使用您想要支持的 iOS 版本上不可用的 API。
It depends what you mean by "built for". Backward compatibility is not defined by the release number of the SDK you are building against. For example, with the SDK 4.3, you can build applications that will run on iOS 4.2 (and earlier of course).
You define the minimum version of iOS your application will support, by filling in the Deployment Target entry of the target info page. If you put "4.3" in there, then your application will not even install on a machine running iOS 4.2 or earlier.
It also remains then your responsibility not to use APIs that are not available on the versions of iOS you want to support.
您只需将“iOS 部署目标”设置为“iOS 4.1”即可。
You just need to set the "iOS Deployment Target" to "iOS 4.1".