使用 XCode 4.2,是否可以使用 Storyboards 制作 iOS 4 兼容的应用程序?
我搜索过这个答案,并得到了不同的评论。有人说这应该是可能的(就像使用 ARC),有人说这是不可能的。任何人都可以给我一个明确的答案吗?
I have searched for this answer, and have had mixed reviews. Some say it SHOULD be possible (like using ARC), and some say it's not possible. Can anyone give me a definitive answer either way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据苹果NO.苹果总是说故事板只适用于 iOS5。但要向自己证明这一点。启动一个新项目,选中使用故事板,创建项目。然后将目标iOS更改为4.3并运行,视图将无法加载。
ARC 甚至可以运行到 4.2,但您不能使用低于 4.3 的弱引用。
According to apple NO. Apple always said storyboarding would only be for iOS5. But prove it to yourself. Start a new project, check use storyboarding, create the project. Then change the target iOS to 4.3 and run, the view will not load.
ARC will run even down to 4.2, though you can't use weak references below 4.3.