我正在创建一个仅支持LANDSDCAPE模式的iPad应用程序。我正在使用故事板。
即使在执行以下操作后,当模拟器以横向模式启动时,应用程序仅以纵向模式启动。请帮助我如何使应用程序以横向模式启动并始终保持该模式。
提前感谢您的帮助。我在网上搜索过但是没有答案。
答案 0 :(得分:6)
在模拟指标下选择“风景”。
还要确保在视图控制器实现中使用此方法:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}