使用故事板创建 iPhone 和 iPad 兼容的应用程序

Creating an iPhone- and iPad-compatible app with a storyboard

我正在尝试创建一个 iPhone 和 iPad 兼容的应用程序。 我可以遵循任何好的教程和示例吗? 我可以为每个视图创建一个视图或故事板并将其用于 iPhone 和 iPad 吗? 如果我使用故事板,我可以这样做吗: 如果是iPhone,使用这个故事板设计,如果iPad,使用其他故事板设计。 还是我需要为 iPad 和 iPhone 创建一个新视图或故事板? 我现在不知道如何开始。

您只需要一个故事板即可构建与 iPad 和 iPhone 模型兼容的界面。

Apple 现在鼓励开发人员采用自适应用户界面。正如他们 guide 所说,"With the latest advancements with View Controllers in iOS 8 and Auto Layout in Xcode, it’s now even easier for you to adapt your user interface to context and different sized devices"。换句话说,所有 iOS 设备只需要一个故事板,也称为 "Universal" 故事板。

这篇 tutorial 应该可以帮助您开始使用通用故事板和自适应布局。