就像设置一个代码来检测 iPhone 的分辨率并根据它的分辨率加载某个视图控制器。
CGRect screenBounds = [[UIScreen mainScreen] bounds];
if (screenBounds.size.height == 568) {
// load ViewContollerA
} else {
// load ViewContollerB
}
如何设置代码来加载故事板?谢谢。
我认为它可能必须连接到 IBAction,以便当您按下按钮时,它会验证分辨率是什么并根据它加载下一个情节提要(A 或 B)。